From 50f89617d6c0b65e4ddce2daf65e5be7a075e5ea Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Thu, 14 Oct 2010 08:25:17 +0200 Subject: [PATCH] Store a copy of the given profile. --- src/main/java/net/pterodactylus/sone/data/Sone.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/net/pterodactylus/sone/data/Sone.java b/src/main/java/net/pterodactylus/sone/data/Sone.java index 62741e7..b70dbdb 100644 --- a/src/main/java/net/pterodactylus/sone/data/Sone.java +++ b/src/main/java/net/pterodactylus/sone/data/Sone.java @@ -141,13 +141,15 @@ public class Sone { } /** - * Sets the profile of this Sone. + * Sets the profile of this Sone. A copy of the given profile is stored so + * that subsequent modifications of the given profile are not reflected in + * this Sone! * * @param profile * The profile to set */ public synchronized void setProfile(Profile profile) { - this.profile = profile; + this.profile = new Profile(profile); modificationCounter++; } -- 2.7.4