Skip to content

Commit

Permalink
Merge 68f4e79 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
realm-ci committed Oct 26, 2017
2 parents fb6dac0 + 68f4e79 commit d6c84d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Expand Up @@ -20,8 +20,10 @@
### Bug Fixes

* Fixed the compile warnings of using deprecated method `RealmProxyMediator.getTableName()` in generated mediator classes (#5455).
* [ObjectServer] now retrying network query when encountering any `IOException` (#5453).
* Fixed a `NoClassDefFoundError` due to using `@SafeVarargs` below API 19 (#5463).

### Interal
### Internal

* Updated Realm Sync to 2.1.0

Expand All @@ -39,7 +41,7 @@
* Fix some potential database corruption caused by deleting the Realm file while a Realm instance are still opened in another process or the sync client thread.
* Added `realm.ignoreKotlinNullability` as a kapt argument to disable treating kotlin non-null types as `@Required` (#5412) (introduced in `v3.6.0`).
* Increased http connect/write timeout for low bandwidth network.
* [ObjectServer] now retrying network query when encountering any `IOException` (#5453).


## 4.0.0 (2017-10-16)

Expand Down
Expand Up @@ -762,7 +762,6 @@ private void addModule(Object module) {
* create a module. These classes must be available in the default module. Calling this will remove any
* previously configured modules.
*/
@SafeVarargs
final Builder schema(Class<? extends RealmModel> firstClass, Class<? extends RealmModel>... additionalClasses) {
//noinspection ConstantConditions
if (firstClass == null) {
Expand Down
1 change: 0 additions & 1 deletion realm/realm-library/src/main/java/io/realm/RealmList.java
Expand Up @@ -99,7 +99,6 @@ public RealmList() {
*
* @param objects initial objects in the list.
*/
@SafeVarargs
public RealmList(E... objects) {
//noinspection ConstantConditions
if (objects == null) {
Expand Down

0 comments on commit d6c84d4

Please sign in to comment.