Add 'this' qualifier to the corresponding class instance fields in the TestSecurityManager username and password property accessors.

This commit is contained in:
John Blum
2019-01-17 12:23:43 -08:00
parent 5b490b9096
commit 4b7d642e23

View File

@@ -130,11 +130,11 @@ public abstract class AbstractAutoConfiguredSecurityContextIntegrationTests
}
String getUsername() {
return username;
return this.username;
}
String getPassword() {
return password;
return this.password;
}
@Override