git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/branches/REL_2@2821
ab3bd59b-922f-494d-bb5f-
6f0a3c29deca
private boolean passiveAuth;
/** A catch-all map for other properties. */
- private Map<String, Serializable> propsMap = new ConcurrentHashMap<String, Serializable>();
+ private Map<String, Serializable> propsMap = new ConcurrentHashMap<String, Serializable>(0);
/** The ProfileHandler URL. */
private String profileHandlerURL;
super(sessionId, timeout);
sessionSecret = secret;
- authnMethods = new ConcurrentHashMap<String, AuthenticationMethodInformation>();
- servicesInformation = new ConcurrentHashMap<String, ServiceInformation>();
+ authnMethods = new ConcurrentHashMap<String, AuthenticationMethodInformation>(2);
+ servicesInformation = new ConcurrentHashMap<String, ServiceInformation>(2);
}
/** {@inheritDoc} */