Skip to content

Commit 6ea8d78

Browse files
committed
oops, I wasn't passing along collections if you called count(String... collections)
1 parent 8d5ac68 commit 6ea8d78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/marklogic/client/impl/PojoRepositoryImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public long count() {
181181

182182
@Override
183183
public long count(String... collections) {
184-
return count((PojoQueryDefinition) null, null);
184+
return count(collections, null);
185185
}
186186

187187
@Override

0 commit comments

Comments
 (0)