Do not handle combined JSON if option not given.

This commit is contained in:
chriseth 2015-04-24 11:48:23 +02:00
parent 245620bdc2
commit 87e8c81514

View File

@ -380,6 +380,9 @@ bool CommandLineInterface::processInput()
void CommandLineInterface::handleCombinedJSON()
{
if (!m_args.count("combined-json"))
return;
Json::Value output(Json::objectValue);
set<string> requests;