STYLE: writeRegisteredObject: remove unused switch

This commit is contained in:
mattijs
2011-05-20 11:55:59 +01:00
parent ec1b7c019a
commit 7e86354f4f
2 changed files with 20 additions and 31 deletions

View File

@ -44,7 +44,6 @@ Foam::writeRegisteredObject::writeRegisteredObject
: :
name_(name), name_(name),
obr_(obr), obr_(obr),
active_(true),
objectNames_() objectNames_()
{ {
read(dict); read(dict);
@ -61,10 +60,7 @@ Foam::writeRegisteredObject::~writeRegisteredObject()
void Foam::writeRegisteredObject::read(const dictionary& dict) void Foam::writeRegisteredObject::read(const dictionary& dict)
{ {
if (active_)
{
dict.lookup("objectNames") >> objectNames_; dict.lookup("objectNames") >> objectNames_;
}
} }
@ -82,8 +78,6 @@ void Foam::writeRegisteredObject::end()
void Foam::writeRegisteredObject::write() void Foam::writeRegisteredObject::write()
{ {
if (active_)
{
forAll(objectNames_, i) forAll(objectNames_, i)
{ {
if (obr_.foundObject<regIOobject>(objectNames_[i])) if (obr_.foundObject<regIOobject>(objectNames_[i]))
@ -108,7 +102,6 @@ void Foam::writeRegisteredObject::write()
} }
} }
}
} }

View File

@ -65,10 +65,6 @@ protected:
const objectRegistry& obr_; const objectRegistry& obr_;
//- On/off switch
bool active_;
// Read from dictionary // Read from dictionary
//- Names of objects to control //- Names of objects to control