فهرست منبع

Removed unused stuff

Benoit Blanchon 11 سال پیش
والد
کامیت
c22473cf37
3فایلهای تغییر یافته به همراه0 افزوده شده و 9 حذف شده
  1. 0 1
      JsonParser/JsonArray.h
  2. 0 5
      JsonParser/JsonObject.h
  3. 0 3
      JsonParser/JsonValue.h

+ 0 - 1
JsonParser/JsonArray.h

@@ -7,7 +7,6 @@
 
 #include "JsonValue.h"
 #include "JsonArrayIterator.h"
-#include "JsonToken.h"
 
 namespace ArduinoJson
 {

+ 0 - 5
JsonParser/JsonObject.h

@@ -79,11 +79,6 @@ namespace ArduinoJson
             {
                 return operator[](key);
             }
-
-            static JsonObject null()
-            {
-                return JsonObject(JsonToken::null());
-            }
         };
 
         typedef JsonObject JsonHashTable;

+ 0 - 3
JsonParser/JsonValue.h

@@ -21,9 +21,6 @@ namespace ArduinoJson
 {
     namespace Parser
     {
-        class JsonArray;
-        class JsonObject;
-
         class JsonValue : protected JsonToken
         {
         public: