diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2020-04-30 10:28:44 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-04-30 10:28:44 +0200 |
commit | f6b435d0d9643147a3f3f57f9ffe5711d269e20a (patch) | |
tree | d299b76bcd510c08482f6c2f5ae686359b982a0a | |
parent | 7b923b83b33e180d3e40133bc0e60dd873648955 (diff) | |
download | nextcloud-server-f6b435d0d9643147a3f3f57f9ffe5711d269e20a.tar.gz nextcloud-server-f6b435d0d9643147a3f3f57f9ffe5711d269e20a.zip |
Run the cs fixer for green ci
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
-rw-r--r-- | lib/private/Files/ObjectStore/Swift.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/private/Files/ObjectStore/Swift.php b/lib/private/Files/ObjectStore/Swift.php index e0d819f8a2a..1ce4312af2b 100644 --- a/lib/private/Files/ObjectStore/Swift.php +++ b/lib/private/Files/ObjectStore/Swift.php @@ -26,17 +26,12 @@ namespace OC\Files\ObjectStore; use GuzzleHttp\Client; -use GuzzleHttp\Exception\ClientException; -use GuzzleHttp\Exception\ConnectException; -use GuzzleHttp\Exception\RequestException; use GuzzleHttp\Exception\BadResponseException; -use GuzzleHttp\HandlerStack; use function GuzzleHttp\Psr7\stream_for; use Icewind\Streams\RetryWrapper; use OCP\Files\NotFoundException; use OCP\Files\ObjectStore\IObjectStore; use OCP\Files\StorageAuthException; -use OpenStack\Common\Error\BadResponseError; class Swift implements IObjectStore { /** @@ -112,7 +107,6 @@ class Swift implements IObjectStore { ], ] ); - } catch (BadResponseException $e) { if ($e->getResponse() && $e->getResponse()->getStatusCode() === 404) { throw new NotFoundException("object $urn not found in object store"); |