[gnome-color-manager] trivial: remove some overly keen debugging



commit 4c6c6d1f5b4dc9a097081f981b4482d7c2a47ba0
Author: Richard Hughes <richard hughsie com>
Date:   Thu Jan 7 18:15:12 2010 +0000

    trivial: remove some overly keen debugging

 src/gcm-utils.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)
---
diff --git a/src/gcm-utils.c b/src/gcm-utils.c
index 32ac067..f0b356a 100644
--- a/src/gcm-utils.c
+++ b/src/gcm-utils.c
@@ -54,13 +54,11 @@ gcm_utils_linkify (const gchar *text)
 		/* find the start of a link */
 		ret = g_str_has_prefix (&text[i], "http://";);
 		if (ret) {
-			egg_debug ("dump from %i to %i", j, i);
 			g_string_append_len (string, text+j, i-j);
 			for (j=i;; j++) {
 				/* find the end of the link, or the end of the string */
 				if (text[j] == '\0' ||
 				    text[j] == ' ') {
-					egg_debug ("link is from %i to %i", i, j);
 					g_string_append (string, "<a href=\"");
 					g_string_append_len (string, text+i, j-i);
 					g_string_append (string, "\">");
@@ -73,7 +71,6 @@ gcm_utils_linkify (const gchar *text)
 
 		/* end of the string, dump what's left */
 		if (text[i] == '\0') {
-			egg_debug ("dump from %i to %i", j, i);
 			g_string_append_len (string, text+j, i-j);
 			break;
 		}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]