Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mark constructor of RealmAsyncTask package protected #2676

Merged
merged 1 commit into from
Apr 26, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* All JSON methods on Realm now only wraps JSONException in RealmException. All other Exceptions are thrown as they are.
* Removed `HandlerController` from the public API.
* Marked all methods on `RealmObject` and all public classes final (#1594).
* Removed constructor of `RealmAsyncTask` from the public API8 (#1594).

### Deprecated

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public final class RealmAsyncTask {
private final Future<?> pendingQuery;
private volatile boolean isCancelled = false;

public RealmAsyncTask(Future<?> pendingQuery) {
RealmAsyncTask(Future<?> pendingQuery) {
this.pendingQuery = pendingQuery;
}

Expand Down