diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2018-09-29 21:12:39 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-09-23 14:03:40 +0200 |
commit | 12863e0d243bb72057f1a005a0b319910f4da8c5 (patch) | |
tree | 8a7f76817b92b14410f9c0d6ec274f6bbcaa0559 /apps/files_external/lib/Lib | |
parent | 963d35c78c80181591a314cb89b58448fa17de9e (diff) | |
download | nextcloud-server-12863e0d243bb72057f1a005a0b319910f4da8c5.tar.gz nextcloud-server-12863e0d243bb72057f1a005a0b319910f4da8c5.zip |
Change visibility to private (from protected)
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps/files_external/lib/Lib')
-rw-r--r-- | apps/files_external/lib/Lib/Storage/AmazonS3.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/Storage/AmazonS3.php b/apps/files_external/lib/Lib/Storage/AmazonS3.php index c935d500200..b48c3fbfd83 100644 --- a/apps/files_external/lib/Lib/Storage/AmazonS3.php +++ b/apps/files_external/lib/Lib/Storage/AmazonS3.php @@ -152,7 +152,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { * @return bool * @throws \Exception */ - protected function doesDirectoryExist($path) { + private function doesDirectoryExist($path) { if (!isset($this->directoryCache[$path])) { // Maybe this isn't an actual key, but a prefix. // Do a prefix listing of objects to determine. |