Bug 684954 — Debug message claim that Individual are created with no personas
authorPhilip Withnall <philip@tecnocode.co.uk>
Fri, 28 Sep 2012 17:27:27 +0000 (18:27 +0100)
committerPhilip Withnall <philip@tecnocode.co.uk>
Fri, 28 Sep 2012 17:27:27 +0000 (18:27 +0100)
Fix the debug message in the Individual constructor.

Closes: https://bugzilla.gnome.org/show_bug.cgi?id=684954

NEWS
folks/individual.vala

diff --git a/NEWS b/NEWS
index b775862..6a61cf6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,7 @@ Bugs fixed:
   Telepathy account
 • Bug 672709 — Add new interaction details properties to individuals
   (follow-up patch)
+• Bug 684954 — Debug message claim that Individual are created with no personas
 
 Overview of changes from libfolks 0.7.4 to libfolks 0.7.4.1
 ===========================================================
index f301dd9..5e43736 100644 (file)
@@ -1152,13 +1152,13 @@ public class Folks.Individual : Object,
   public Individual (Set<Persona>? personas)
     {
       Object (personas: personas);
-    }
 
-  construct
-    {
       debug ("Creating new Individual with %u Personas: %p",
           this._persona_set.size, this);
+    }
 
+  construct
+    {
       this._persona_set_ro = this._persona_set.read_only_view;
     }