[VIVO-1613] Fix menu ordering bug (#90)

Resolves https://jira.duraspace.org/browse/VIVO-1613
This commit is contained in:
Graham Triggs 2018-10-29 16:57:15 +00:00 committed by Ben
parent 73d6a85e5e
commit fe00198dd5

View file

@ -365,10 +365,8 @@ public class WebappDaoFactoryJena implements WebappDaoFactory {
@Override
public ObjectPropertyStatementDao getObjectPropertyStatementDao() {
if( objectPropertyStatementDao == null )
// TODO supply a valid RDFService as the first argument if we keep this
// implementation
objectPropertyStatementDao = new ObjectPropertyStatementDaoJena(
null, dwf, this);
rdfService, dwf, this);
return objectPropertyStatementDao;
}