]> spindle.queued.net Git - midori/commitdiff
Remove forgotten debugging output from MidoriViewable
authorChristian Dywan <christian@twotoasts.de>
Fri, 19 Dec 2008 23:31:16 +0000 (00:31 +0100)
committerChristian Dywan <christian@twotoasts.de>
Fri, 19 Dec 2008 23:31:16 +0000 (00:31 +0100)
midori/midori-viewable.c

index d83c2c64c56d5c3fb10b4d79a26e837bd3e156cc..7d43ea2880a059bae47e81b013555064c0b39fb9 100644 (file)
@@ -110,13 +110,11 @@ midori_viewable_new_from_uri (const gchar* uri)
 
     g_return_val_if_fail (uri != NULL, NULL);
 
-    g_debug ("size: %d", g_hash_table_size (iface->p));
     if (!g_hash_table_size (iface->p))
         return NULL;
 
     if ((parts = g_strsplit (uri, "://", 2)))
     {
-        g_debug ("%s, %s", parts[0], uri);
         if (!(type_name = g_hash_table_lookup (iface->p, parts[0])))
         {
             /* FIXME: Support midori://dummy/foo */
@@ -134,7 +132,6 @@ midori_viewable_new_from_uri (const gchar* uri)
     }
     else if ((parts = g_strsplit_set (uri, ":", 2)))
     {
-        g_debug (parts[0]);
         type_name = g_hash_table_lookup (iface->p, parts[0]);
         g_strfreev (parts);
         if (type_name)