Skip to content

Commit 4fe7ac5

Browse files
authored
Merge pull request #5429 from realm/merge-e40a42-to-master
Fix merge from e40a42 to master
2 parents 73b9850 + 537c689 commit 4fe7ac5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ The internal file format has been upgraded. Opening an older Realm will upgrade
6565

6666
* [ObjectServer] Exposing a `RealmConfiguration` that allows a user to open the backup Realm after the client reset (#4759/#5223).
6767
* [ObjectServer] Realm no longer throws a native “unsupported instruction” exception in some cases when opening a synced Realm asynchronously (https://github.com/realm/realm-object-store/issues/502).
68+
* [ObjectServer] Fixed "Cannot open the read only Realm" issue when get`PermissionManager` (#5414).
6869
* Throw `IllegalArgumentException` instead of `IllegalStateException` when calling string/binary data setters if the data length exceeds the limit.
6970
* Added support for ISO8601 2-digit time zone designators (#5309).
7071
* "Bad File Header" caused by the device running out of space while compacting the Realm (#5011).

realm/realm-library/src/main/java/io/realm/RealmQuery.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1802,8 +1802,7 @@ public RealmResults<E> findAll() {
18021802
}
18031803

18041804
/**
1805-
* Finds all objects that fulfill the query conditions and sorted by specific field name.
1806-
* This method is only available from a Looper thread.
1805+
* Finds all objects that fulfill the query conditions. This method is only available from a Looper thread.
18071806
*
18081807
* @return immediately an empty {@link RealmResults}. Users need to register a listener
18091808
* {@link io.realm.RealmResults#addChangeListener(RealmChangeListener)} to be notified when the query completes.

0 commit comments

Comments
 (0)