mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
style fixes
This commit is contained in:
@@ -134,7 +134,6 @@ void PrintHandler::null()
|
||||
{
|
||||
arrayValue();
|
||||
_out << "null";
|
||||
|
||||
_objStart = false;
|
||||
}
|
||||
|
||||
@@ -181,7 +180,6 @@ void PrintHandler::value(const std::string& value)
|
||||
}
|
||||
|
||||
|
||||
|
||||
void PrintHandler::value(double d)
|
||||
{
|
||||
arrayValue();
|
||||
@@ -206,10 +204,9 @@ void PrintHandler::comma()
|
||||
|
||||
void PrintHandler::arrayValue()
|
||||
{
|
||||
|
||||
|
||||
if (!_objStart) comma();
|
||||
if (array()) {
|
||||
if (array())
|
||||
{
|
||||
_out << _tab;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user