X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FPost.java;h=c30665a47fa2bb7fbc0ca929622d69913fb3222d;hp=d0938c9a535009794e8e9f88739d41c7772599ec;hb=df1e2e70c2f7031cd5b175d58b8f0b70c672176b;hpb=544c75a3b539a2948d08f688e7c367baa3dac28b diff --git a/src/main/java/net/pterodactylus/sone/data/Post.java b/src/main/java/net/pterodactylus/sone/data/Post.java index d0938c9..c30665a 100644 --- a/src/main/java/net/pterodactylus/sone/data/Post.java +++ b/src/main/java/net/pterodactylus/sone/data/Post.java @@ -31,13 +31,13 @@ public class Post { private final UUID id; /** The Sone this post belongs to. */ - private Sone sone; + private volatile Sone sone; /** The time of the post (in milliseconds since Jan 1, 1970 UTC). */ - private long time; + private volatile long time; /** The text of the post. */ - private String text; + private volatile String text; /** * Creates a new post.