Renamed IndentedPrintDecorator into IndentedPrint

This commit is contained in:
Benoit Blanchon
2014-08-26 09:56:05 +02:00
parent b5002265cf
commit 23e61cc0f7
9 changed files with 19 additions and 19 deletions

View File

@ -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);
}