File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
gcloud-java-datastore/src/main/java/com/google/gcloud/datastore Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ public interface QueryResults<V> extends Iterator<V> {
3636 Class <?> resultClass ();
3737
3838 /**
39- <<<<<<< HEAD
4039 * Returns the Cursor for the point after the value returned in the last {@link #next} call. This
4140 * cursor can be used to issue subsequent queries (with the same constraints) that may return
4241 * additional results.
@@ -51,11 +50,7 @@ public interface QueryResults<V> extends Iterator<V> {
5150 * // Consume some results (using results.next()) and do any other actions as necessary.
5251 * query = query.toBuilder().startCursor(results.cursorAfter()).build();
5352 * results = datastore.run(query); // now we will iterate over all entities not yet consumed
54- * </pre>
55- =======
56- * Returns the Cursor for the point after the value returned in the last {@link #next} call.
57- * Currently, {@code cursorAfter} returns null in all cases but the last result.
58- >>>>>>> upstream/master
53+ * }</pre>
5954 */
6055 Cursor cursorAfter ();
6156}
You can’t perform that action at this time.
0 commit comments