From: David ‘Bombe’ Roden Date: Thu, 14 Oct 2010 10:34:45 +0000 (+0200) Subject: Use normal right-shift. X-Git-Tag: 0.1-RC1~402 X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=9294f338cd2cbdb6a1b0c4cfbb4bba9ad3c1b592;hp=2d0067ede0cb2b85498abbc8cffe0ed5dce93242;p=Sone.git Use normal right-shift. --- diff --git a/src/main/java/net/pterodactylus/sone/data/Post.java b/src/main/java/net/pterodactylus/sone/data/Post.java index 58c50e1..15992a3 100644 --- a/src/main/java/net/pterodactylus/sone/data/Post.java +++ b/src/main/java/net/pterodactylus/sone/data/Post.java @@ -173,7 +173,7 @@ public class Post { */ @Override public int hashCode() { - return id.hashCode() ^ sone.hashCode() ^ (int) (time >>> 32) ^ (int) (time & 0xffffffff) ^ text.hashCode(); + return id.hashCode() ^ sone.hashCode() ^ (int) (time >> 32) ^ (int) (time & 0xffffffff) ^ text.hashCode(); } /**