Change visibility to private (from protected)
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
c0649bed36
commit
97e12415ae
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ class AmazonS3 extends \OC\Files\Storage\Common {
|
||||||
* @return bool
|
* @return bool
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
protected function doesDirectoryExist($path) {
|
private function doesDirectoryExist($path) {
|
||||||
if (!isset($this->directoryCache[$path])) {
|
if (!isset($this->directoryCache[$path])) {
|
||||||
// Maybe this isn't an actual key, but a prefix.
|
// Maybe this isn't an actual key, but a prefix.
|
||||||
// Do a prefix listing of objects to determine.
|
// Do a prefix listing of objects to determine.
|
||||||
|
|
Loading…
Reference in a new issue