Removed error message

This commit is contained in:
Hrvoje Jasak 2015-05-14 23:29:00 +01:00
parent b2cab2462e
commit 66632c794e

View file

@ -112,7 +112,7 @@ Foam::dictionary& Foam::debug::controlDict()
// MB 05/2015
// Make control dict
cerr<< "Make control dict\n";
controlDictPtr_ = new dictionary();
dictionary& cDict = *controlDictPtr_;
@ -127,9 +127,6 @@ Foam::dictionary& Foam::debug::controlDict()
// Add a subDict for each switch set
forAll (globalControlDictSwitchSetNames, gI)
{
cerr<< "Adding subdict"
<< globalControlDictSwitchSetNames.names[gI]
<< "\n";
cDict.add(globalControlDictSwitchSetNames.names[gI], dictionary());
}
}