diff --git a/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processorCyclic/processorCyclicPolyPatch.C b/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processorCyclic/processorCyclicPolyPatch.C index 69aafe49b0..32b8a9ccde 100644 --- a/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processorCyclic/processorCyclicPolyPatch.C +++ b/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processorCyclic/processorCyclicPolyPatch.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -113,23 +113,6 @@ Foam::processorCyclicPolyPatch::processorCyclicPolyPatch {} -Foam::processorCyclicPolyPatch::processorCyclicPolyPatch -( - const processorCyclicPolyPatch& pp, - const polyBoundaryMesh& bm, - const label index, - const label newSize, - const label newStart, - const word& referPatchName -) -: - processorPolyPatch(pp, bm, index, newSize, newStart), - referPatchName_(referPatchName), - tag_(-1), - referPatchID_(-1) -{} - - Foam::processorCyclicPolyPatch::processorCyclicPolyPatch ( const processorCyclicPolyPatch& pp, diff --git a/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processorCyclic/processorCyclicPolyPatch.H b/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processorCyclic/processorCyclicPolyPatch.H index 55686627fb..42dad546a5 100644 --- a/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processorCyclic/processorCyclicPolyPatch.H +++ b/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/processorCyclic/processorCyclicPolyPatch.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -153,18 +153,6 @@ public: const label newStart ); - //- Construct as given the original patch and resetting the - // face list, boundary mesh information and referPatch - processorCyclicPolyPatch - ( - const processorCyclicPolyPatch& pp, - const polyBoundaryMesh& bm, - const label index, - const label newSize, - const label newStart, - const word& referPatchName - ); - //- Construct given the original patch and a map processorCyclicPolyPatch ( @@ -175,7 +163,6 @@ public: const label newStart ); - //- Construct and return a clone, resetting the boundary mesh virtual autoPtr clone(const polyBoundaryMesh& bm) const { @@ -205,31 +192,6 @@ public: ); } - //- Construct and return a clone, resetting the face list - // and boundary mesh - virtual autoPtr clone - ( - const polyBoundaryMesh& bm, - const label index, - const label newSize, - const label newStart, - const word& referPatchName - ) const - { - return autoPtr - ( - new processorCyclicPolyPatch - ( - *this, - bm, - index, - newSize, - newStart, - referPatchName - ) - ); - } - //- Construct and return a clone, resetting the face list // and boundary mesh virtual autoPtr clone