ENH: Removed duplicate writing of patch value

This commit is contained in:
andy
2012-10-25 16:13:44 +01:00
parent fcf4863259
commit 10af522789

View File

@ -96,13 +96,11 @@ Foam::fanFvPatchField<Type>::fanFvPatchField
template<class Type>
void Foam::fanFvPatchField<Type>::write(Ostream& os) const
{
fixedJumpFvPatchField<Type>::write(os);
if (this->cyclicPatch().owner())
{
jumpTable_->writeData(os);
}
this->writeEntry("value", os);
}