X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FProfile.java;h=7c294307b827a8e070937e857a1930dd9d2c6391;hb=0f4f5d0cfaf08989dd8fec15ac7a2d12a6d4636d;hp=72901b31c9a818860dbc6520e07dfca48e5b9997;hpb=90c85f39570270b879e2d3020fe95231410f57c6;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/data/Profile.java b/src/main/java/net/pterodactylus/sone/data/Profile.java index 72901b3..7c29430 100644 --- a/src/main/java/net/pterodactylus/sone/data/Profile.java +++ b/src/main/java/net/pterodactylus/sone/data/Profile.java @@ -26,25 +26,25 @@ package net.pterodactylus.sone.data; public class Profile { /** Whether the profile was modified. */ - private boolean modified; + private volatile boolean modified; /** The first name. */ - private String firstName; + private volatile String firstName; /** The middle name(s). */ - private String middleName; + private volatile String middleName; /** The last name. */ - private String lastName; + private volatile String lastName; /** The day of the birth date. */ - private Integer birthDay; + private volatile Integer birthDay; /** The month of the birth date. */ - private Integer birthMonth; + private volatile Integer birthMonth; /** The year of the birth date. */ - private Integer birthYear; + private volatile Integer birthYear; /** * Creates a new empty profile.