Changed no-arg constructor to a form more suitable for unit testing.
This commit is contained in:
@@ -47,8 +47,8 @@ public class TestingAuthenticationToken extends AbstractAuthenticationToken {
|
||||
this.authorities = authorities;
|
||||
}
|
||||
|
||||
private TestingAuthenticationToken() {
|
||||
super();
|
||||
protected TestingAuthenticationToken() {
|
||||
throw new IllegalArgumentException("Cannot use default constructor");
|
||||
}
|
||||
|
||||
//~ Methods ================================================================
|
||||
|
||||
+2
-2
@@ -56,8 +56,8 @@ public class UsernamePasswordAuthenticationToken
|
||||
this.authorities = authorities;
|
||||
}
|
||||
|
||||
private UsernamePasswordAuthenticationToken() {
|
||||
super();
|
||||
protected UsernamePasswordAuthenticationToken() {
|
||||
throw new IllegalArgumentException("Cannot use default constructor");
|
||||
}
|
||||
|
||||
//~ Methods ================================================================
|
||||
|
||||
Reference in New Issue
Block a user