From b66d16e5e1c36e1b484c8d0b04a9d4d35202d9dd Mon Sep 17 00:00:00 2001
From: Bernd Flemisch <bernd@iws.uni-stuttgart.de>
Date: Tue, 12 Mar 2013 10:26:55 +0000
Subject: [PATCH] remove member variables numFAP and numSCV from
 BoxFVElementGeometry. They have been deprecated in 2.3, in favor of using
 numFap and numScv.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10392 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 dumux/implicit/box/boxfvelementgeometry.hh | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/dumux/implicit/box/boxfvelementgeometry.hh b/dumux/implicit/box/boxfvelementgeometry.hh
index 1c9966af66..e32fce1d5c 100644
--- a/dumux/implicit/box/boxfvelementgeometry.hh
+++ b/dumux/implicit/box/boxfvelementgeometry.hh
@@ -587,10 +587,8 @@ public:
     int numEdges; //!< number of edges
     int numFaces; //!< number of faces (0 in < 3D)
     int numScv; //!< number of subcontrol volumes
-    int numSCV; //!< \deprecated number of subcontrol volumes
     int numNeighbors; //!< needed for compatibility with cc models
     int numFap; //!< number of flux approximation points
-    int numFAP; //!< \deprecated number of flux approximation points
     std::vector<ElementPointer> neighbors; //!< needed for compatibility with cc models
     
     const LocalFiniteElementCache feCache_;
@@ -617,7 +615,6 @@ public:
         numEdges = referenceElement.size(dim-1);
         numFaces = (dim<3)?0:referenceElement.size(1);
         numScv = numVertices;
-        numSCV = numScv;
         numNeighbors = 0;
 
         bool useTwoPointFlux
@@ -626,7 +623,6 @@ public:
             numFap = 2;
         else
             numFap = numVertices;
-        numFAP = numFap;
 
         // corners:
         for (int vert = 0; vert < numVertices; vert++) {
-- 
GitLab