Skip to content

Commit

Permalink
mark constructor of RealmAsyncTask package protected
Browse files Browse the repository at this point in the history
  • Loading branch information
zaki50 committed Apr 26, 2016
1 parent 05d93db commit 9fb8421
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### Breaking changes

* Removed `HandlerController` from the public API.
* Removed constructor of `RealmAsyncTask` from the public API.

### Deprecated

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

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

Expand Down

0 comments on commit 9fb8421

Please sign in to comment.