mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-05-05 10:26:52 +02:00
Make type optional
This commit is contained in:
@@ -64,9 +64,10 @@ public class XmlUserDAO extends AbstractXmlDAO<User, XmlUserDatabase>
|
||||
@Inject
|
||||
public XmlUserDAO(ConfigurationStoreFactory storeFactory)
|
||||
{
|
||||
super(storeFactory.forType(XmlUserDatabase.class)
|
||||
.withName(STORE_NAME)
|
||||
.build());
|
||||
super(storeFactory
|
||||
.withName(STORE_NAME)
|
||||
.withType(XmlUserDatabase.class)
|
||||
.build());
|
||||
}
|
||||
|
||||
//~--- methods --------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user