Add 'this' qualifier to the corresponding class instance fields in the TestSecurityManager username and password property accessors.
This commit is contained in:
@@ -130,11 +130,11 @@ public abstract class AbstractAutoConfiguredSecurityContextIntegrationTests
|
||||
}
|
||||
|
||||
String getUsername() {
|
||||
return username;
|
||||
return this.username;
|
||||
}
|
||||
|
||||
String getPassword() {
|
||||
return password;
|
||||
return this.password;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user