codeTemplates/BC: Updated to use the new primitive writeEntry
This commit is contained in:
@ -220,11 +220,11 @@ void Foam::CLASS::write
|
||||
) const
|
||||
{
|
||||
FVPATCHF::write(os);
|
||||
os.writeKeyword("scalarData") << scalarData_ << token::END_STATEMENT << nl;
|
||||
os.writeKeyword("data") << data_ << token::END_STATEMENT << nl;
|
||||
Foam::writeEntry(os, "scalarData", scalarData_);
|
||||
Foam::writeEntry(os, "data", data_);
|
||||
fieldData_.writeEntry("fieldData", os);
|
||||
timeVsData_->writeData(os);
|
||||
os.writeKeyword("wordData") << wordData_ << token::END_STATEMENT << nl;
|
||||
Foam::writeEntry(os, "wordData", wordData_);
|
||||
this->writeEntry("value", os);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user