Use normal right-shift.
[Sone.git] / 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();
        }
 
        /**