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=4429abfbaeebcac8cd42ab6faaac50436d816058;hpb=5baa28c3936cebfa7b5f33f78125d721c8d0e1fc;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 4429abf..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,16 @@ 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.