mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-22 23:07:29 +02:00
Renamed PrettyPrintDecorator into JsonPrettyPrint
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
#include "JsonValue.h"
|
||||
#include "Print.h"
|
||||
#include "Printable.h"
|
||||
#include "PrettyPrintDecorator.h"
|
||||
#include "JsonPrettyPrint.h"
|
||||
|
||||
namespace ArduinoJson
|
||||
{
|
||||
@ -28,7 +28,7 @@ namespace ArduinoJson
|
||||
|
||||
size_t prettyPrintTo(IndentedPrint& p) const
|
||||
{
|
||||
PrettyPrintDecorator decorator(p);
|
||||
JsonPrettyPrint decorator(p);
|
||||
return printTo(decorator);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user