]> git.mxchange.org Git - juser-activity-core.git/commitdiff
Use same value
authorRoland Haeder <roland@mxchange.org>
Tue, 13 Oct 2015 12:31:48 +0000 (14:31 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 13 Oct 2015 12:31:48 +0000 (14:31 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jusercore/model/user/LoginUser.java

index 25950faa8991d754b63d16cbafbc331659f84780..194ce0317dc09a106a0e73fbbef724d8947999f8 100644 (file)
@@ -250,7 +250,7 @@ public class LoginUser implements User {
        public int hashCode () {
                int hash = 5;
                hash = 83 * hash + Objects.hashCode(this.getUserName());
-               hash = 87 * hash + Objects.hashCode(this.getUserId());
+               hash = 83 * hash + Objects.hashCode(this.getUserId());
                return hash;
        }
 }