Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonatan E. Salas authored Nov 24, 2016
1 parent f41bf24 commit ad5d9fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Check the following example:
//This example uses Java 8 features, I assume the usage of retrolambda
public final class DetailsInteractor extends BaseInteractor {

public void retrieveDetailsFromService(@NonNull String id, @NonNull SuccessListener<Bundle> successListener, @NonNull ErrorListener<String> errorListener) {
public void retrieveDetailsFromService(@NonNull final String id, @NonNull final OnSuccessListener<Bundle> successListener, @NonNull final OnErrorListener<String> errorListener) {
runOnBackground(() -> {
//Getting data from somewhere
Bundle data = ... ;
Expand Down

0 comments on commit ad5d9fb

Please sign in to comment.