changed EMPTY_MAP to HashMap
This commit is contained in:
Scott Battaglia 2008-02-13 16:26:34 +00:00
parent 8529f8139f
commit 36f5a7280f
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ import org.jasig.cas.client.authentication.AttributePrincipal;
import org.jasig.cas.client.authentication.AttributePrincipalImpl;
import org.jasig.cas.client.util.CommonUtils;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
/**
@ -53,7 +53,7 @@ public final class AssertionImpl implements Assertion {
* @param principal the Principal to associate with the Assertion.
*/
public AssertionImpl(final AttributePrincipal principal) {
this(principal, Collections.EMPTY_MAP);
this(principal, new HashMap());
}
/**