Always initialize profile.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 13 Nov 2010 20:10:03 +0000 (21:10 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 13 Nov 2010 20:10:03 +0000 (21:10 +0100)
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>());