Use normal right-shift.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 14 Oct 2010 10:34:45 +0000 (12:34 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 14 Oct 2010 10:34:45 +0000 (12:34 +0200)
src/main/java/net/pterodactylus/sone/data/Post.java

index 58c50e1..15992a3 100644 (file)
@@ -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();
        }
 
        /**