revert changes to deprecated preferences as it is a not needed leftover

This commit is contained in:
Arthur Schiwon 2015-01-06 17:52:54 +01:00
parent e724b78694
commit 8e488f726c
1 changed files with 1 additions and 3 deletions

View File

@ -137,12 +137,10 @@ class Preferences {
* @param string $app
* @param string $key
* @param string $value
* @param int|null $limit
* @param int|null $offset
* @return array
* @deprecated use getUsersForUserValue of \OCP\IConfig instead
*/
public function getUsersForValue($app, $key, $value, $limit = null, $offset = null) {
public function getUsersForValue($app, $key, $value) {
return $this->config->getUsersForUserValue($app, $key, $value);
}