Skip to content

Commit c536a9c

Browse files
Adopt dev compat to new scanBatch signature
1 parent 9e5c7a8 commit c536a9c

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

cypher/api/storage-engine-adapter/src/main/java/org/neo4j/gds/compat/AbstractInMemoryNodeCursor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ public void single(long reference) {
115115
this.highMark = reference;
116116
}
117117

118-
@Override
119118
public boolean scanBatch(AllNodeScan scan, int sizeHint) {
120119
if (getId() != NO_ID) {
121120
reset();

cypher/api/storage-engine-adapter/src/main/java/org/neo4j/gds/compat/AbstractInMemoryRelationshipScanCursor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ public boolean next() {
7171
}
7272
}
7373

74-
@Override
7574
public boolean scanBatch(AllRelationshipsScan scan, int sizeHint) {
7675
throw new UnsupportedOperationException();
7776
}

cypher/api/storage-engine-adapter/src/main/java/org/neo4j/internal/recordstorage/InMemoryNodeScan.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ boolean scanRange(AbstractInMemoryNodeCursor cursor, long start, long stopInclus
2929
return cursor.scanRange(start, stopInclusive);
3030
}
3131

32-
@Override
3332
public boolean scanBatch(int sizeHint, AbstractInMemoryNodeCursor cursor) {
3433
return super.scanBatch(sizeHint, cursor);
3534
}

0 commit comments

Comments
 (0)