diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-10-29 15:10:02 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-10-29 15:10:02 +0100 |
commit | a80ac9c4923a48a0d180a9ae8651bd84ea94c678 (patch) | |
tree | 2177f1188f9e53c5fe63c1991925fd496d1d4b2e /lib/private/files/cache/updater.php | |
parent | fcfac51aa18bdd81be004e63fb98683e2cc780a0 (diff) | |
download | nextcloud-server-a80ac9c4923a48a0d180a9ae8651bd84ea94c678.tar.gz nextcloud-server-a80ac9c4923a48a0d180a9ae8651bd84ea94c678.zip |
make getUidAndFilename() private
Diffstat (limited to 'lib/private/files/cache/updater.php')
-rw-r--r-- | lib/private/files/cache/updater.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/cache/updater.php b/lib/private/files/cache/updater.php index 6d016f9deac..e711b21e340 100644 --- a/lib/private/files/cache/updater.php +++ b/lib/private/files/cache/updater.php @@ -99,7 +99,7 @@ class Updater { * @param string $filename * @return array with the oweners uid and the owners path */ - public static function getUidAndFilename($filename) { + private static function getUidAndFilename($filename) { $uid = \OC\Files\Filesystem::getOwner($filename); \OC\Files\Filesystem::initMountPoints($uid); |