|
@@ -258,14 +258,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;
|
|
|
}
|
|
|
|