From eb06fb858e8492453ddb66f9b813ef4724decced Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 9 Sep 2019 04:44:36 -0700 Subject: [PATCH] filebackend: clean up some comments and remove unused FileBackendStoreOpHandle field Change-Id: I67ae874219e0056f9173d653c3dc272099b9b2e8 --- includes/libs/filebackend/FileBackendStore.php | 4 ++-- .../filebackend/fileophandle/FileBackendStoreOpHandle.php | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/includes/libs/filebackend/FileBackendStore.php b/includes/libs/filebackend/FileBackendStore.php index f2c07e8253..5caf2508d3 100644 --- a/includes/libs/filebackend/FileBackendStore.php +++ b/includes/libs/filebackend/FileBackendStore.php @@ -1587,7 +1587,7 @@ abstract class FileBackendStore extends FileBackend { // Validate and sanitize the relative path (backend-specific) $relPath = $this->resolveContainerPath( $shortCont, $relPath ); if ( $relPath !== null ) { - // Prepend any wiki ID prefix to the container name + // Prepend any domain ID prefix to the container name $container = $this->fullContainerName( $shortCont ); if ( self::isValidContainerName( $container ) ) { // Validate and sanitize the container name (backend-specific) @@ -1722,7 +1722,7 @@ abstract class FileBackendStore extends FileBackend { } /** - * Get the full container name, including the wiki ID prefix + * Get the full container name, including the domain ID prefix * * @param string $container * @return string diff --git a/includes/libs/filebackend/fileophandle/FileBackendStoreOpHandle.php b/includes/libs/filebackend/fileophandle/FileBackendStoreOpHandle.php index c366a0fff7..649225d839 100644 --- a/includes/libs/filebackend/fileophandle/FileBackendStoreOpHandle.php +++ b/includes/libs/filebackend/fileophandle/FileBackendStoreOpHandle.php @@ -35,8 +35,6 @@ abstract class FileBackendStoreOpHandle { /** @var array */ public $resourcesToClose = []; - public $call; // string; name that identifies the function called - /** * Close all open file handles */ -- 2.20.1