Fix tests
This commit is contained in:
@@ -264,14 +264,14 @@ public class AuthenticationPrincipalArgumentResolverTests {
|
||||
public final String property = "property";
|
||||
}
|
||||
|
||||
static class CopyUserPrincipal {
|
||||
public static class CopyUserPrincipal {
|
||||
public final String property;
|
||||
|
||||
CopyUserPrincipal(String property) {
|
||||
public CopyUserPrincipal(String property) {
|
||||
this.property = property;
|
||||
}
|
||||
|
||||
CopyUserPrincipal(CopyUserPrincipal toCopy) {
|
||||
public CopyUserPrincipal(CopyUserPrincipal toCopy) {
|
||||
this.property = toCopy.property;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user