From bfdbdd9b20fd8196487315eeaa040a77ef90c531 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 14 Apr 2012 14:22:45 +0200 Subject: [PATCH] remove outdated file --- lib/connect.php | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 lib/connect.php diff --git a/lib/connect.php b/lib/connect.php deleted file mode 100644 index 22e48750a62..00000000000 --- a/lib/connect.php +++ /dev/null @@ -1,40 +0,0 @@ -. -* -*/ - -/** - * Class for connecting multiply ownCloud installations - * - */ -class OC_Connect{ - static private $clouds=array(); - - static function connect($path,$user,$password){ - $cloud=new OC_REMOTE_CLOUD($path,$user,$password); - if($cloud->connected){ - self::$clouds[$path]=$cloud; - return $cloud; - }else{ - return false; - } - } -}