diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-24 11:47:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-24 11:47:37 +0200 |
commit | 3d671cc536b1b472c746fd4ea8f60135f4935a44 (patch) | |
tree | 928a0fd4c13d609f5cadf32fd3271c465830a05a /apps/files_sharing | |
parent | 8a1d3c7e877f143d211af259d08737c0d9aa8cfe (diff) | |
parent | c54a59d51eb924e77df6f6d2bb79ea466d169221 (diff) | |
download | nextcloud-server-3d671cc536b1b472c746fd4ea8f60135f4935a44.tar.gz nextcloud-server-3d671cc536b1b472c746fd4ea8f60135f4935a44.zip |
Merge pull request #4443 from nextcloud/cleanup-unused-imports
Remove unused use statements
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/lib/AppInfo/Application.php | 1 | ||||
-rw-r--r-- | apps/files_sharing/lib/Cache.php | 1 | ||||
-rw-r--r-- | apps/files_sharing/lib/External/Manager.php | 1 | ||||
-rw-r--r-- | apps/files_sharing/lib/External/Storage.php | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/apps/files_sharing/lib/AppInfo/Application.php b/apps/files_sharing/lib/AppInfo/Application.php index f502d905fe8..db2175c3445 100644 --- a/apps/files_sharing/lib/AppInfo/Application.php +++ b/apps/files_sharing/lib/AppInfo/Application.php @@ -27,7 +27,6 @@ namespace OCA\Files_Sharing\AppInfo; -use OCA\FederatedFileSharing\DiscoveryManager; use OCA\Files_Sharing\Middleware\OCSShareAPIMiddleware; use OCA\Files_Sharing\MountProvider; use OCP\AppFramework\App; diff --git a/apps/files_sharing/lib/Cache.php b/apps/files_sharing/lib/Cache.php index d7dcb426d85..d9cf5d80b80 100644 --- a/apps/files_sharing/lib/Cache.php +++ b/apps/files_sharing/lib/Cache.php @@ -29,7 +29,6 @@ namespace OCA\Files_Sharing; use OC\Files\Cache\Wrapper\CacheJail; use OCP\Files\Cache\ICacheEntry; -use OCP\Files\Storage\IStorage; /** * Metadata cache for shared files diff --git a/apps/files_sharing/lib/External/Manager.php b/apps/files_sharing/lib/External/Manager.php index 2c348907384..2adcc7cf5cb 100644 --- a/apps/files_sharing/lib/External/Manager.php +++ b/apps/files_sharing/lib/External/Manager.php @@ -30,7 +30,6 @@ namespace OCA\Files_Sharing\External; use OC\Files\Filesystem; -use OCA\FederatedFileSharing\DiscoveryManager; use OCP\Files; use OCP\Files\Storage\IStorageFactory; use OCP\Http\Client\IClientService; diff --git a/apps/files_sharing/lib/External/Storage.php b/apps/files_sharing/lib/External/Storage.php index b84ba5d96ab..95f45dc3691 100644 --- a/apps/files_sharing/lib/External/Storage.php +++ b/apps/files_sharing/lib/External/Storage.php @@ -32,7 +32,6 @@ use GuzzleHttp\Exception\ClientException; use GuzzleHttp\Exception\ConnectException; use OC\Files\Storage\DAV; use OC\ForbiddenException; -use OCA\FederatedFileSharing\DiscoveryManager; use OCA\Files_Sharing\ISharedStorage; use OCP\AppFramework\Http; use OCP\Federation\ICloudId; |