diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-01-26 09:49:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-26 09:49:30 +0100 |
commit | 43ed8b446c86569158fc17fdbfc7f83eb1d807a9 (patch) | |
tree | fa6779443cb7f675b520fb78354641eba16f55a6 /apps | |
parent | aebb443ca5f7909dc1bea663ac0a707bafca07b2 (diff) | |
parent | 16a558871cf371aec59dfb2ec7b672f0a4ab166f (diff) | |
download | nextcloud-server-43ed8b446c86569158fc17fdbfc7f83eb1d807a9.tar.gz nextcloud-server-43ed8b446c86569158fc17fdbfc7f83eb1d807a9.zip |
Merge pull request #8060 from nextcloud/proper-codeflow
Use proper code flow instead of not needed else branch
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/Lib/Storage/AmazonS3.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/Storage/AmazonS3.php b/apps/files_external/lib/Lib/Storage/AmazonS3.php index 7c536443a0e..03a24e89765 100644 --- a/apps/files_external/lib/Lib/Storage/AmazonS3.php +++ b/apps/files_external/lib/Lib/Storage/AmazonS3.php @@ -232,7 +232,6 @@ class AmazonS3 extends \OC\Files\Storage\Common { } catch (\Exception $e) { return $this->batchDelete(); } - return false; } private function batchDelete($path = null) { |