forked from bblanchon/ArduinoJson
Reduced size by 22 bytes by removing writeEmptyArray() and writeEmptyObject()
This commit is contained in:
@ -30,11 +30,9 @@ class JsonWriter {
|
||||
|
||||
void beginArray() { write('['); }
|
||||
void endArray() { write(']'); }
|
||||
void writeEmptyArray() { write("[]"); }
|
||||
|
||||
void beginObject() { write('{'); }
|
||||
void endObject() { write('}'); }
|
||||
void writeEmptyObject() { write("{}"); }
|
||||
|
||||
void writeColon() { write(':'); }
|
||||
void writeComma() { write(','); }
|
||||
|
Reference in New Issue
Block a user