From f14b00e2475af9e0bf87ad253812b92d73c783c5 Mon Sep 17 00:00:00 2001 From: tobiasKaminsky Date: Tue, 20 Aug 2019 13:39:48 +0200 Subject: [PATCH] no need of own hashCode Signed-off-by: tobiasKaminsky --- .../com/owncloud/android/lib/resources/shares/ShareeUser.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/com/owncloud/android/lib/resources/shares/ShareeUser.java b/src/main/java/com/owncloud/android/lib/resources/shares/ShareeUser.java index c31008ef04..72cb3fc8ef 100644 --- a/src/main/java/com/owncloud/android/lib/resources/shares/ShareeUser.java +++ b/src/main/java/com/owncloud/android/lib/resources/shares/ShareeUser.java @@ -31,7 +31,6 @@ import android.os.Parcelable; import androidx.annotation.Nullable; - import lombok.AllArgsConstructor; import lombok.Getter; @@ -62,7 +61,7 @@ protected ShareeUser(Parcel in) { @Override public int describeContents() { - return 0; + return this.hashCode(); } @Override