xxx

Fork of MbedJSONValue by Samuel Mokrani

Revision:
3:f2ffae08b963
Parent:
2:e39bfa3e917d
Child:
5:c5ca009a95e3
--- a/MbedJSONValue.cpp	Thu Sep 22 10:54:29 2011 +0000
+++ b/MbedJSONValue.cpp	Thu Sep 22 10:55:41 2011 +0000
@@ -80,7 +80,6 @@
         case TypeNull:
             return "null";
         case TypeBoolean:
-            printf("boolean\r\n");
             return _value.asBool ? "true" : "false";
         case TypeInt:    {
             char buf[10];