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

This reverts commit 32e2e1bc76.
This commit is contained in:
Henry Weller
2016-08-12 21:34:37 +01:00
parent 32e2e1bc76
commit 0f36cce1b5

View File

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