diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-03-26 09:39:09 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-03-26 09:39:09 +0100 |
commit | e76be308eb8e969b1a4b74d97c2ccb320a986937 (patch) | |
tree | 2d4a0755ef3d0392d1f16f8fc448b916eb875492 /lib | |
parent | 1e39719926ea4b204a3b0a3e8aeba6a9a9ad5a96 (diff) | |
download | nextcloud-server-e76be308eb8e969b1a4b74d97c2ccb320a986937.tar.gz nextcloud-server-e76be308eb8e969b1a4b74d97c2ccb320a986937.zip |
Remove unused setUserVars utility method
That method was moved to the external storage recently so
isn't needed here any more.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/filesystem.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 56bafc7e974..7e27650c557 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -351,17 +351,6 @@ class Filesystem { } /** - * fill in the correct values for $user - * - * @param string $user - * @param string $input - * @return string - */ - private static function setUserVars($user, $input) { - return str_replace('$user', $user, $input); - } - - /** * get the default filesystem view * * @return View |