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();
|
arrayValue();
|
||||||
_out << "null";
|
_out << "null";
|
||||||
|
|
||||||
_objStart = false;
|
_objStart = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -181,7 +180,6 @@ void PrintHandler::value(const std::string& value)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void PrintHandler::value(double d)
|
void PrintHandler::value(double d)
|
||||||
{
|
{
|
||||||
arrayValue();
|
arrayValue();
|
||||||
@@ -206,10 +204,9 @@ void PrintHandler::comma()
|
|||||||
|
|
||||||
void PrintHandler::arrayValue()
|
void PrintHandler::arrayValue()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
if (!_objStart) comma();
|
if (!_objStart) comma();
|
||||||
if (array()) {
|
if (array())
|
||||||
|
{
|
||||||
_out << _tab;
|
_out << _tab;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user