STYLE: remove special treatment for 'include' keyword (closes #521)

- a holdover from OpenFOAM 1.4 (prior to the #include dictionary directive)
This commit is contained in:
Mark Olesen
2017-07-10 10:30:15 +02:00
parent f304b70177
commit 0456c5976d

View File

@ -241,14 +241,6 @@ bool Foam::entry::New(dictionary& parentDict, Istream& is)
return true;
}
else if
(
!disableFunctionEntries
&& keyword == "include"
) // ... For backward compatibility
{
return functionEntries::includeEntry::execute(parentDict, is);
}
else // ... Data entries
{
token nextToken(is);