From 72e34905ad5f06ab0cfeb57f85f7543c221e6af6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= <dennis.glaeser@iws.uni-stuttgart.de>
Date: Thu, 10 May 2018 12:00:10 +0200
Subject: [PATCH] [elastic][localres] remove obsolete stuff

---
 dumux/geomechanics/elastic/localresidual.hh | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/dumux/geomechanics/elastic/localresidual.hh b/dumux/geomechanics/elastic/localresidual.hh
index 99f6cf0fc7..8d52cfbd02 100644
--- a/dumux/geomechanics/elastic/localresidual.hh
+++ b/dumux/geomechanics/elastic/localresidual.hh
@@ -26,7 +26,6 @@
 #ifndef DUMUX_GEOMECHANICS_ELASTIC_LOCAL_RESIDUAL_HH
 #define DUMUX_GEOMECHANICS_ELASTIC_LOCAL_RESIDUAL_HH
 
-#include <vector>
 #include <dumux/common/properties.hh>
 
 namespace Dumux {
@@ -41,7 +40,6 @@ template<class TypeTag>
 class ElasticLocalResidual: public GET_PROP_TYPE(TypeTag, BaseLocalResidual)
 {
     using ParentType = typename GET_PROP_TYPE(TypeTag, BaseLocalResidual);
-    using Implementation = typename GET_PROP_TYPE(TypeTag, LocalResidual);
 
     using GridView = typename GET_PROP_TYPE(TypeTag, GridView);
     using Element = typename GridView::template Codim<0>::Entity;
@@ -137,13 +135,6 @@ public:
 
         return source;
     }
-
-protected:
-    Implementation *asImp_()
-    { return static_cast<Implementation *> (this); }
-
-    const Implementation *asImp_() const
-    { return static_cast<const Implementation *> (this); }
 };
 
 } // end namespace Dumux
-- 
GitLab