forked from bblanchon/ArduinoJson
Renamed Print::write() into print()
This commit is contained in:
@ -41,19 +41,19 @@ private:
|
||||
{
|
||||
size_t n = 0;
|
||||
|
||||
n += p.write("[");
|
||||
n += p.write('[');
|
||||
|
||||
for (int i = 0; i < itemCount; i++)
|
||||
{
|
||||
if (i > 0)
|
||||
{
|
||||
n += p.write(",");
|
||||
n += p.write(',');
|
||||
}
|
||||
|
||||
n += items[i].printTo(p);
|
||||
}
|
||||
|
||||
n += p.write("]");
|
||||
n += p.write(']');
|
||||
|
||||
return n;
|
||||
}
|
||||
|
Reference in New Issue
Block a user