X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FReply.java;h=05d80499f52c80a8d6b00e6639f488bac91c1ae2;hb=b29cf0908e6dfd2b55220a3a7e44200f2fe5b19e;hp=c97d57b4143f9f8ffee613b888583b03bf6a7132;hpb=48d8d875299dcbcaf24912c58960b7a1c070d22b;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/data/Reply.java b/src/main/java/net/pterodactylus/sone/data/Reply.java index c97d57b..05d8049 100644 --- a/src/main/java/net/pterodactylus/sone/data/Reply.java +++ b/src/main/java/net/pterodactylus/sone/data/Reply.java @@ -31,16 +31,26 @@ public class Reply { private final UUID id; /** The Sone that posted this reply. */ - private Sone sone; + private volatile Sone sone; /** The Post this reply refers to. */ - private Post post; + private volatile Post post; /** The time of the reply. */ - private long time; + private volatile long time; /** The text of the reply. */ - private String text; + private volatile String text; + + /** + * Creates a new reply. + * + * @param id + * The ID of the reply + */ + public Reply(String id) { + this(id, null, null, 0, null); + } /** * Creates a new reply. @@ -200,7 +210,7 @@ public class Reply { */ @Override public int hashCode() { - return sone.hashCode() ^ id.hashCode() ^ post.hashCode() ^ (int) (time >> 32) ^ (int) (time & 0xffffffff) ^ text.hashCode(); + return id.hashCode(); } /** @@ -212,7 +222,7 @@ public class Reply { return false; } Reply reply = (Reply) object; - return reply.sone.equals(sone) && reply.id.equals(id) && reply.post.equals(post) && (reply.time == time) && reply.text.equals(text); + return reply.id.equals(id); } /**