aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/corba-cal.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/corba-cal.c')
-rw-r--r--calendar/corba-cal.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/calendar/corba-cal.c b/calendar/corba-cal.c
index 8c6246da14..e21ea29f6a 100644
--- a/calendar/corba-cal.c
+++ b/calendar/corba-cal.c
@@ -83,8 +83,6 @@ cal_repo_get_object_by_pilot_id (PortableServer_Servant servant,
char *buffer;
CORBA_char *ret;
- g_message("entering cal_repo_get_object_by_pilot_id\n");
-
obj = calendar_object_find_by_pilot (gcal->cal, pilot_id);
if (obj == NULL){
GNOME_Calendar_Repository_NotFound *exn;
@@ -93,7 +91,6 @@ cal_repo_get_object_by_pilot_id (PortableServer_Servant servant,
CORBA_exception_set (ev,
CORBA_USER_EXCEPTION,
ex_GNOME_Calendar_Repository_NotFound, exn);
- g_message("leaving cal_repo_get_object_by_pilot_id the hard way\n");
return NULL;
}
@@ -101,8 +98,6 @@ cal_repo_get_object_by_pilot_id (PortableServer_Servant servant,
ret = CORBA_string_dup (buffer);
free (buffer);
- g_message("leaving cal_repo_get_object_by_pilot_id\n");
-
return ret;
}