mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 16:14:05 +01: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