summaryrefslogtreecommitdiffstats
path: root/lib/Db/Feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Db/Feed.php')
-rw-r--r--lib/Db/Feed.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/Db/Feed.php b/lib/Db/Feed.php
index 1d5721d3b..c468f8272 100644
--- a/lib/Db/Feed.php
+++ b/lib/Db/Feed.php
@@ -64,8 +64,6 @@ class Feed extends Entity implements IAPI, \JsonSerializable
/** @var string|null */
protected $lastModified = '0';
/** @var string|null */
- protected $httpEtag = null;
- /** @var string|null */
protected $location = null;
/** @var int */
protected $ordering = 0;
@@ -101,7 +99,6 @@ class Feed extends Entity implements IAPI, \JsonSerializable
$this->addType('articlesPerUpdate', 'integer');
$this->addType('httpLastModified', 'string');
$this->addType('lastModified', 'string');
- $this->addType('httpEtag', 'string');
$this->addType('location', 'string');
$this->addType('ordering', 'integer');
$this->addType('fullTextEnabled', 'boolean');
@@ -180,14 +177,6 @@ class Feed extends Entity implements IAPI, \JsonSerializable
/**
* @return string|null
*/
- public function getHttpEtag(): ?string
- {
- return $this->httpEtag;
- }
-
- /**
- * @return string|null
- */
public function getHttpLastModified(): ?string
{
return $this->httpLastModified;
@@ -454,19 +443,6 @@ class Feed extends Entity implements IAPI, \JsonSerializable
}
/**
- * @param string|null $httpEtag
- */
- public function setHttpEtag(?string $httpEtag = null): Feed
- {
- if ($this->httpEtag !== $httpEtag) {
- $this->httpEtag = $httpEtag;
- $this->markFieldUpdated('httpEtag');
- }
-
- return $this;
- }
-
- /**
* @param string|null $httpLastModified
*/
public function setHttpLastModified(?string $httpLastModified = null): Feed