summaryrefslogtreecommitdiffstats
path: root/lib/Db/Folder.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Db/Folder.php')
-rw-r--r--lib/Db/Folder.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/Db/Folder.php b/lib/Db/Folder.php
index e4dbf0fe7..2efd65e96 100644
--- a/lib/Db/Folder.php
+++ b/lib/Db/Folder.php
@@ -52,11 +52,6 @@ class Folder extends Entity implements IAPI, \JsonSerializable
return $this->deletedAt;
}
- public function getId(): int
- {
- return $this->id;
- }
-
/**
* @return string|null
*/
@@ -115,16 +110,6 @@ class Folder extends Entity implements IAPI, \JsonSerializable
return $this;
}
- public function setId(int $id): self
- {
- if ($this->id !== $id) {
- $this->id = $id;
- $this->markFieldUpdated('id');
- }
-
- return $this;
- }
-
public function setLastModified(?string $lastModified = null): self
{