mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-22 14:57:33 +02:00
Renamed IndentedPrintDecorator into IndentedPrint
This commit is contained in:
@ -26,7 +26,7 @@ namespace ArduinoJson
|
||||
return printTo(sb);
|
||||
}
|
||||
|
||||
size_t prettyPrintTo(IndentedPrintDecorator& p) const
|
||||
size_t prettyPrintTo(IndentedPrint& p) const
|
||||
{
|
||||
PrettyPrintDecorator decorator(p);
|
||||
return printTo(decorator);
|
||||
@ -34,7 +34,7 @@ namespace ArduinoJson
|
||||
|
||||
size_t prettyPrintTo(Print& p) const
|
||||
{
|
||||
IndentedPrintDecorator decorator(p);
|
||||
IndentedPrint decorator(p);
|
||||
return printTo(decorator);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user