mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 04:17:55 +01:00
minor improvements to documentation and style
Conflicts: JSON/include/Poco/JSON/Stringifier.h JSON/src/PrintHandler.cpp JSON/src/Stringifier.cpp
This commit is contained in:
@@ -88,7 +88,7 @@ void PrintHandler::startObject()
|
||||
|
||||
void PrintHandler::endObject()
|
||||
{
|
||||
if( _tab.length() >= indent())
|
||||
if (_tab.length() >= indent())
|
||||
_tab.erase(_tab.length() - indent());
|
||||
|
||||
_out << endLine() << _tab << '}';
|
||||
@@ -205,7 +205,7 @@ void PrintHandler::comma()
|
||||
void PrintHandler::arrayValue()
|
||||
{
|
||||
if (!_objStart) comma();
|
||||
if (array())
|
||||
if (array())
|
||||
{
|
||||
_out << _tab;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user