aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-simple-data-wrapper.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-04-01 12:16:39 +0800
committerDan Winship <danw@src.gnome.org>2000-04-01 12:16:39 +0800
commit74b6039c5287b433038a5ece91874f19a862a184 (patch)
treea4686a56eb5ce72155065a6ea52182a2ccf04225 /camel/camel-simple-data-wrapper.c
parentcd8753df965d89d32d66e0ed4ba28311ac1f22eb (diff)
downloadgsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar
gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar.gz
gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar.bz2
gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar.lz
gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar.xz
gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar.zst
gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.zip
remove debugging printf()s that no longer seem useful
svn path=/trunk/; revision=2274
Diffstat (limited to 'camel/camel-simple-data-wrapper.c')
-rw-r--r--camel/camel-simple-data-wrapper.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/camel/camel-simple-data-wrapper.c b/camel/camel-simple-data-wrapper.c
index f06d4d3485..b0f4553360 100644
--- a/camel/camel-simple-data-wrapper.c
+++ b/camel/camel-simple-data-wrapper.c
@@ -140,13 +140,10 @@ my_write_to_stream (CamelDataWrapper *data_wrapper, CamelStream *stream)
g_assert (stream);
array = simple_data_wrapper->byte_array;
- if ( array && array->len) {
- printf ("In simple data wrapper::write_to_stream, there is an array\n");
+ if ( array && array->len)
camel_stream_write (stream, (gchar *)array->data, array->len);
- } else {
- printf ("In simple data wrapper::write_to_stream, there is no array\n");
+ else
parent_class->write_to_stream (data_wrapper, stream);
- }
CAMEL_LOG_FULL_DEBUG ("CamelSimpleDataWrapper:: Leaving my_write_to_stream\n");
}