From 3004f628e92d70f8d6001bf949eb6281c6023b99 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Mon, 6 Oct 2025 16:33:28 +0200 Subject: [PATCH] refactor(Sabre/Node): Remove dead code property_cache is no longer used. Signed-off-by: Carl Schwan --- apps/dav/lib/Connector/Sabre/Node.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/apps/dav/lib/Connector/Sabre/Node.php b/apps/dav/lib/Connector/Sabre/Node.php index 505e6b5eda4..14ac7063ace 100644 --- a/apps/dav/lib/Connector/Sabre/Node.php +++ b/apps/dav/lib/Connector/Sabre/Node.php @@ -32,13 +32,6 @@ abstract class Node implements \Sabre\DAV\INode { */ protected $path; - /** - * node properties cache - * - * @var array - */ - protected $property_cache = null; - protected FileInfo $info; /** @@ -140,10 +133,6 @@ abstract class Node implements \Sabre\DAV\INode { $this->refreshInfo(); } - public function setPropertyCache($property_cache) { - $this->property_cache = $property_cache; - } - /** * Returns the last modification time, as a unix timestamp *