File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
objectbox-java/src/main/java/io/objectbox/query Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public class Query<T> {
5555
5656 native List nativeFind (long handle , long cursorHandle , long offset , long limit );
5757
58- native long [] nativeFindKeysUnordered (long handle , long cursorHandle );
58+ native long [] nativeFindIds (long handle , long cursorHandle , long offset , long limit );
5959
6060 native long nativeCount (long handle , long cursorHandle );
6161
@@ -242,7 +242,7 @@ public long[] findIds() {
242242 return box .internalCallWithReaderHandle (new CallWithHandle <long []>() {
243243 @ Override
244244 public long [] call (long cursorHandle ) {
245- return nativeFindKeysUnordered (handle , cursorHandle );
245+ return nativeFindIds (handle , cursorHandle , 0 , 0 );
246246 }
247247 });
248248 }
You can’t perform that action at this time.
0 commit comments