From 455fbafb484cb816307317f93a4d4018f8c2a429 Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind@owncloud.com>
Date: Fri, 13 Jun 2014 12:47:47 +0200
Subject: [PATCH] Fix undefined index error

---
 apps/files_sharing/lib/external/storage.php | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/apps/files_sharing/lib/external/storage.php b/apps/files_sharing/lib/external/storage.php
index 7eac7f02c2..cd04841bb0 100644
--- a/apps/files_sharing/lib/external/storage.php
+++ b/apps/files_sharing/lib/external/storage.php
@@ -33,15 +33,9 @@ class Storage extends DAV implements ISharedStorage {
 	 */
 	private $token;
 
-	/**
-	 * @var \OCA\Files_Sharing\External\Manager
-	 */
-	private $manager;
-
 	public function __construct($options) {
 		$this->remote = $options['remote'];
 		$this->remoteUser = $options['owner'];
-		$this->manager = $options['manager'];
 		list($protocol, $remote) = explode('://', $this->remote);
 		list($host, $root) = explode('/', $remote);
 		$secure = $protocol === 'https';
-- 
GitLab