functionObject: change default behavior of 'end()' to do nothing rather than calling execute and write

This commit is contained in:
Henry Weller
2016-08-12 21:28:00 +01:00
parent 45409b3fdc
commit 32e2e1bc76

View File

@ -136,7 +136,7 @@ bool Foam::functionObject::read(const dictionary& dict)
bool Foam::functionObject::end()
{
return execute() && write();
return true;
}