From: Philip Withnall Date: Fri, 28 Sep 2012 17:27:27 +0000 (+0100) Subject: Bug 684954 — Debug message claim that Individual are created with no personas X-Git-Tag: FOLKS_0_8_0~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c6e7980430f5c9c3a43aad68aa6070300d3f90f1;p=platform%2Fupstream%2Ffolks.git Bug 684954 — Debug message claim that Individual are created with no personas Fix the debug message in the Individual constructor. Closes: https://bugzilla.gnome.org/show_bug.cgi?id=684954 --- diff --git a/NEWS b/NEWS index b775862..6a61cf6 100644 --- 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 =========================================================== diff --git a/folks/individual.vala b/folks/individual.vala index f301dd9..5e43736 100644 --- a/folks/individual.vala +++ b/folks/individual.vala @@ -1152,13 +1152,13 @@ public class Folks.Individual : Object, public Individual (Set? 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; }