Made no arg constructor protected to enable unit test coverage.

This commit is contained in:
Ben Alex 2004-03-26 11:51:47 +00:00
parent b4273c62b7
commit 1a040c7ddf
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class PrincipalAcegiUserToken extends AbstractAdapterAuthenticationToken
this.password = password; this.password = password;
} }
private PrincipalAcegiUserToken() { protected PrincipalAcegiUserToken() {
super(); super();
} }