Update DelegatingGraphDatabase.java

Empty constructor needed by Java EE CDI to treat this class as a bean
This commit is contained in:
remigio
2014-05-19 11:40:49 +02:00
parent af07caea05
commit 503d5d965c

View File

@@ -63,6 +63,9 @@ public class DelegatingGraphDatabase implements GraphDatabase {
private ResultConverter resultConverter;
private volatile CypherQueryEngineImpl cypherQueryEngine;
public DelegatingGraphDatabase() {
}
public DelegatingGraphDatabase(final GraphDatabaseService delegate) {
this(delegate,null);
}