From: Aaron Schulz Date: Mon, 9 Sep 2019 11:44:36 +0000 (-0700) Subject: filebackend: clean up some comments and remove unused FileBackendStoreOpHandle field X-Git-Tag: 1.34.0-rc.0~293^2 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=eb06fb858e8492453ddb66f9b813ef4724decced;hp=eee9f3b84f8ab38ee9dc4d727e7e5b56fbfb1b24 filebackend: clean up some comments and remove unused FileBackendStoreOpHandle field Change-Id: I67ae874219e0056f9173d653c3dc272099b9b2e8 --- 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 */