Remove unused test code

This commit is contained in:
Sam Brannen
2023-06-24 14:12:58 +02:00
parent 39bc7566df
commit 489c89b912
2 changed files with 0 additions and 23 deletions

View File

@@ -102,18 +102,3 @@ class BeforeAdviceBindingTests {
}
}
class AuthenticationLogger {
public void logAuthenticationAttempt(String username) {
System.out.println("User [" + username + "] attempting to authenticate");
}
}
class SecurityManager {
public boolean authenticate(String username, String password) {
return false;
}
}