Created
October 7, 2015 01:08
-
-
Save wbarksdale/776f7e8af5f3376b8723 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class FindCallback<T extends ParseObject> extends ParseCallback<List<T>> { | |
public abstract void done(List<T> list, ParseException parseException); | |
@Override | |
void internalDone(List<T> list, ParseException parseException) { | |
done(list, parseException); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment