Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b40b4ccb authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "LockscreenCredential: clarify Effective Java rule"

parents 18813f70 49b8b918
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -308,7 +308,7 @@ public class LockscreenCredential implements Parcelable, AutoCloseable {

    @Override
    public int hashCode() {
        // Effective Java — Item 9
        // Effective Java — Always override hashCode when you override equals
        return (17 + mType) * 31 + mCredential.hashCode();
    }