mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-06 13:21:06 +01:00
minor improvements to documentation and style
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 << '}';
|
||||
@@ -207,7 +207,8 @@ void PrintHandler::comma()
|
||||
void PrintHandler::arrayValue()
|
||||
{
|
||||
if (!_objStart) comma();
|
||||
if (array()) {
|
||||
if (array())
|
||||
{
|
||||
_out << _tab;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user