Skip to content

Commit

Permalink
[CommonBasePresenter] fix: equality issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoslacz committed Apr 6, 2017
1 parent 8f906ed commit 796af8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public boolean equals(Object o) {

CommonBasePresenter<?> that = (CommonBasePresenter<?>) o;

return this.getName().equals(that.getName());
return this.getName().equals(that.getName()) && this.getClassName().equals(that.getClassName());
}

@Override
Expand Down

0 comments on commit 796af8b

Please sign in to comment.