diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-09-04 10:27:25 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2020-09-06 17:59:14 +0000 |
commit | ea5b51325a85fb61b2b7f2217bbc186099a8d82c (patch) | |
tree | a4182c22f7902a582a6faaf7cae472b1ad82a2a4 | |
parent | 5056261850e1dfd38d3d3b24bb7b6d285f957007 (diff) | |
download | nextcloud-server-ea5b51325a85fb61b2b7f2217bbc186099a8d82c.tar.gz nextcloud-server-ea5b51325a85fb61b2b7f2217bbc186099a8d82c.zip |
these code bits were part of old logic that was already refactored out
- only references were in unit tests
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r-- | apps/user_ldap/lib/User/User.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/tests/User/UserTest.php | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/User/User.php b/apps/user_ldap/lib/User/User.php index 467d5ca025b..89e5e54d26d 100644 --- a/apps/user_ldap/lib/User/User.php +++ b/apps/user_ldap/lib/User/User.php @@ -195,7 +195,6 @@ class User { * @param array $ldapEntry the user entry as retrieved from LDAP */ public function processAttributes($ldapEntry) { - $this->markRefreshTime(); //Quota $attr = strtolower($this->connection->ldapQuotaAttribute); if(isset($ldapEntry[$attr])) { diff --git a/apps/user_ldap/tests/User/UserTest.php b/apps/user_ldap/tests/User/UserTest.php index 36a312172c1..66ba43f2e7d 100644 --- a/apps/user_ldap/tests/User/UserTest.php +++ b/apps/user_ldap/tests/User/UserTest.php @@ -1005,7 +1005,6 @@ class UserTest extends \Test\TestCase { public function testProcessAttributes() { $requiredMethods = [ - 'markRefreshTime', 'updateQuota', 'updateEmail', 'composeAndStoreDisplayName', |