Skip to content

Commit b90e802

Browse files
committed
in Java 7 I need to implement the remove() method
1 parent b2f73bd commit b90e802

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,9 @@ public boolean hasNext() {
3636
public T next() {
3737
return docPage.nextContent(new JacksonPojoHandle<T>(entityClass)).get();
3838
}
39+
40+
@Override
41+
public void remove() {
42+
throw new UnsupportedOperationException();
43+
}
3944
}

0 commit comments

Comments
 (0)