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 39fa55a commit 892b2ddCopy full SHA for 892b2dd
objectbox-java/src/main/java/io/objectbox/Box.java
@@ -346,17 +346,6 @@ public List<T> getAll() {
346
}
347
348
349
- /** Does not work yet, also probably won't be faster than {@link Box#getAll()}. */
350
- @Temporary
351
- public List<T> getAll2() {
352
- Cursor<T> reader = getReader();
353
- try {
354
- return reader.getAll();
355
- } finally {
356
- releaseReader(reader);
357
- }
358
359
-
360
/**
361
* Puts the given object in the box (aka persisting it). If this is a new entity (its ID property is 0), a new ID
362
* will be assigned to the entity (and returned). If the entity was already put in the box before, it will be
0 commit comments