blockMesh splineEdge - drop old names 'simpleSpline' and 'polySpline'

This commit is contained in:
Mark Olesen 2009-12-07 13:48:22 +01:00
parent a19e488f1e
commit c183d0875d
2 changed files with 1 additions and 24 deletions

View File

@ -40,25 +40,6 @@ namespace Foam
splineEdge, splineEdge,
Istream Istream
); );
// compatibility with old names
addNamedToRunTimeSelectionTable
(
curvedEdge,
splineEdge,
Istream,
simpleSpline
);
// compatibility with old names
addNamedToRunTimeSelectionTable
(
curvedEdge,
splineEdge,
Istream,
polySpline
);
} }
@ -85,7 +66,7 @@ Foam::splineEdge::splineEdge(const pointField& points, Istream& is)
token t(is); token t(is);
is.putBack(t); is.putBack(t);
// compatibility - might also have start/end tangents - discard them // discard unused start/end tangents
if (t == token::BEGIN_LIST) if (t == token::BEGIN_LIST)
{ {
vector tangent0Ignored(is); vector tangent0Ignored(is);

View File

@ -28,10 +28,6 @@ Class
Description Description
A curvedEdge interface for Catmull-Rom splines. A curvedEdge interface for Catmull-Rom splines.
Note
For compatibility, also accepts the type names 'polySpline' and
'simpleSpline'.
SourceFiles SourceFiles
splineEdge.C splineEdge.C