refactor(Sabre/Node): Remove dead code

property_cache is no longer used.

Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
This commit is contained in:
Carl Schwan 2025-10-06 16:33:28 +02:00
parent 057c0dcc98
commit 3004f628e9

View file

@ -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
*