Always initialize profile.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Sone.java
index 7fd5fa6..a0f87b2 100644 (file)
@@ -79,7 +79,7 @@ public class Sone {
        private volatile long time;
 
        /** The profile of this Sone. */
-       private volatile Profile profile;
+       private volatile Profile profile = new Profile();
 
        /** All friend Sones. */
        private final Set<String> friendSones = Collections.synchronizedSet(new HashSet<String>());