mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-20 22:12:31 +02:00
Minor changes
This commit is contained in:
@ -51,13 +51,13 @@ bool JsonContainer::operator==(const JsonContainer & other) const
|
||||
void JsonContainer::addChild(JsonNode* childToAdd)
|
||||
{
|
||||
if (_node)
|
||||
_node->addChildToContainer(childToAdd);
|
||||
_node->addChild(childToAdd);
|
||||
}
|
||||
|
||||
void JsonContainer::removeChild(JsonNode* childToRemove)
|
||||
{
|
||||
if (_node)
|
||||
_node->removeChildFromContainer(childToRemove);
|
||||
_node->removeChild(childToRemove);
|
||||
}
|
||||
|
||||
size_t JsonContainer::size() const
|
||||
|
Reference in New Issue
Block a user