diff --git a/src/mesh/blockMesh/curvedEdges/splineEdge.C b/src/mesh/blockMesh/curvedEdges/splineEdge.C index 23d8835b84..b49711c28b 100644 --- a/src/mesh/blockMesh/curvedEdges/splineEdge.C +++ b/src/mesh/blockMesh/curvedEdges/splineEdge.C @@ -40,25 +40,6 @@ namespace Foam splineEdge, 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); is.putBack(t); - // compatibility - might also have start/end tangents - discard them + // discard unused start/end tangents if (t == token::BEGIN_LIST) { vector tangent0Ignored(is); diff --git a/src/mesh/blockMesh/curvedEdges/splineEdge.H b/src/mesh/blockMesh/curvedEdges/splineEdge.H index 70638121fa..f67a7f7631 100644 --- a/src/mesh/blockMesh/curvedEdges/splineEdge.H +++ b/src/mesh/blockMesh/curvedEdges/splineEdge.H @@ -28,10 +28,6 @@ Class Description A curvedEdge interface for Catmull-Rom splines. -Note - For compatibility, also accepts the type names 'polySpline' and - 'simpleSpline'. - SourceFiles splineEdge.C