GDP group 24 node core

Dependencies:   EthernetInterface SDFileSystem mbed-rtos mbed snail MbedJSONValue

Revision:
23:b57a47c7862a
Parent:
12:daddfc44a0f5
Child:
27:61e67ab47da5
--- a/http.cpp	Tue Jan 13 23:53:24 2015 +0000
+++ b/http.cpp	Tue Jan 27 22:20:46 2015 +0000
@@ -133,7 +133,6 @@
 string http::parse(string httpReply)
 {
     int payloadBegin = httpReply.find("\r\n\r\n");
-    
     if (payloadBegin > -1)
     {
         string payload(httpReply.begin() + payloadBegin + 4, httpReply.end());