mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-23 15:27:30 +02:00
Minor changes
This commit is contained in:
@ -34,7 +34,7 @@ void JsonNode::writeTo(JsonWriter& writer)
|
||||
}
|
||||
}
|
||||
|
||||
void JsonNode::addChildToContainer(JsonNode* childToAdd)
|
||||
void JsonNode::addChild(JsonNode* childToAdd)
|
||||
{
|
||||
if (type != JSON_ARRAY && type != JSON_OBJECT) return;
|
||||
|
||||
@ -52,7 +52,7 @@ void JsonNode::addChildToContainer(JsonNode* childToAdd)
|
||||
lastChild->next = childToAdd;
|
||||
}
|
||||
|
||||
void JsonNode::removeChildFromContainer(JsonNode* childToRemove)
|
||||
void JsonNode::removeChild(JsonNode* childToRemove)
|
||||
{
|
||||
if (type != JSON_ARRAY && type != JSON_OBJECT) return;
|
||||
|
||||
|
Reference in New Issue
Block a user