Remove a pair of unused methods

This commit is contained in:
Jon Chambers 2024-07-30 10:29:33 -04:00 committed by Jon Chambers
parent 045ec9689d
commit 4ee67064bb
2 changed files with 0 additions and 9 deletions

View File

@ -80,9 +80,4 @@ public class StoredRegistrationLock {
return false; return false;
} }
} }
@VisibleForTesting
public StoredRegistrationLock forTime(long timestamp) {
return new StoredRegistrationLock(registrationLock, registrationLockSalt, Instant.ofEpochMilli(timestamp));
}
} }

View File

@ -558,10 +558,6 @@ public class Account {
this.usernameHolds = usernameHolds; this.usernameHolds = usernameHolds;
} }
boolean isStale() {
return stale;
}
public void markStale() { public void markStale() {
stale = true; stale = true;
} }