diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-10-10 17:46:29 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-10-10 17:46:29 +0200 |
commit | 5c6e9518edde10e0c23d0d734d2cc6d161fc15c0 (patch) | |
tree | ac40020d415b2eaeeac88d09053f4d21a3fe876d /lib/filesystem.php | |
parent | a2785f57d2335d06f3fa9900298343c1d7f9253a (diff) | |
download | nextcloud-server-5c6e9518edde10e0c23d0d734d2cc6d161fc15c0.tar.gz nextcloud-server-5c6e9518edde10e0c23d0d734d2cc6d161fc15c0.zip |
drop Filesystem::getInternalPath and Filesystem::getStorage in favor of Filesystem::resolvePath
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r-- | lib/filesystem.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php index 4189fe36c2b..587eb50d9e0 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -45,28 +45,6 @@ class OC_Filesystem { } /** - * get the part of the path relative to the mountpoint of the storage it's stored in - * - * @deprecated OC_Filesystem is replaced by \OC\Files\Filesystem - * @param string $path - * @return bool - */ - static public function getInternalPath($path) { - return \OC\Files\Filesystem::getInternalPath($path); - } - - /** - * get the storage object for a path - * - * @deprecated OC_Filesystem is replaced by \OC\Files\Filesystem - * @param string $path - * @return \OC\Files\Storage\Storage - */ - static public function getStorage($path) { - return \OC\Files\Filesystem::getStorage($path); - } - - /** * resolve a path to a storage and internal path * * @deprecated OC_Filesystem is replaced by \OC\Files\Filesystem |