We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16bd1c1 commit e0ff791Copy full SHA for e0ff791
blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Index.java
@@ -107,7 +107,7 @@ public CloseableIterable<T> query(final Object query) {
107
*/
108
public long count(final String key, final Object value) {
109
this.graph.autoStartTransaction(false);
110
- final IndexHits hits = this.rawIndex.get(key, value);
+ final IndexHits<?> hits = this.rawIndex.get(key, value);
111
final long count = hits.size();
112
hits.close();
113
return count;
0 commit comments