Skip to content

Commit

Permalink
no need of own hashCode
Browse files Browse the repository at this point in the history
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
  • Loading branch information
tobiasKaminsky committed Aug 20, 2019
1 parent cb58df5 commit f14b00e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import android.os.Parcelable;

import androidx.annotation.Nullable;

import lombok.AllArgsConstructor;
import lombok.Getter;

Expand Down Expand Up @@ -62,7 +61,7 @@ protected ShareeUser(Parcel in) {

@Override
public int describeContents() {
return 0;
return this.hashCode();
}

@Override
Expand Down

0 comments on commit f14b00e

Please sign in to comment.