tracker: Unmark a method as asynchronous
authorPhilip Withnall <philip@tecnocode.co.uk>
Sun, 24 Jun 2012 19:21:55 +0000 (20:21 +0100)
committerPhilip Withnall <philip@tecnocode.co.uk>
Wed, 27 Jun 2012 19:38:44 +0000 (20:38 +0100)
Private method, didn’t need to be asynchronous.

backends/tracker/lib/trf-persona-store.vala

index 1972fe1..51e22aa 100644 (file)
@@ -1182,7 +1182,7 @@ public class Trf.PersonaStore : Folks.PersonaStore
           return;
         }
 
-      yield this._build_urn_prefix_table ();
+      this._build_urn_prefix_table ();
 
       this._prefix_tracker_id = new Gee.TreeMap<string, int> ();
 
@@ -1219,7 +1219,7 @@ public class Trf.PersonaStore : Folks.PersonaStore
         }
     }
 
-  private async void _build_urn_prefix_table ()
+  private void _build_urn_prefix_table ()
     {
       if (this._urn_prefix != null)
         {