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 b2f73bd commit b90e802Copy full SHA for b90e802
src/main/java/com/marklogic/client/impl/PojoPageImpl.java
@@ -36,4 +36,9 @@ public boolean hasNext() {
36
public T next() {
37
return docPage.nextContent(new JacksonPojoHandle<T>(entityClass)).get();
38
}
39
+
40
+ @Override
41
+ public void remove() {
42
+ throw new UnsupportedOperationException();
43
+ }
44
0 commit comments