From 2f265b378f3e68973ee47246c13b5b48f91e3811 Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Fri, 6 Apr 2018 11:35:43 +0200
Subject: [PATCH] [cleanup] Remove deprecated disc/volvars header

---
 dumux/discretization/CMakeLists.txt     |  1 -
 dumux/discretization/volumevariables.hh | 41 -------------------------
 2 files changed, 42 deletions(-)
 delete mode 100644 dumux/discretization/volumevariables.hh

diff --git a/dumux/discretization/CMakeLists.txt b/dumux/discretization/CMakeLists.txt
index b1a9c0506d..1fd9c81445 100644
--- a/dumux/discretization/CMakeLists.txt
+++ b/dumux/discretization/CMakeLists.txt
@@ -21,5 +21,4 @@ stationaryvelocityfield.hh
 subcontrolvolumebase.hh
 subcontrolvolumefacebase.hh
 upwindscheme.hh
-volumevariables.hh
 DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dumux/discretization)
diff --git a/dumux/discretization/volumevariables.hh b/dumux/discretization/volumevariables.hh
deleted file mode 100644
index b6e5056a1f..0000000000
--- a/dumux/discretization/volumevariables.hh
+++ /dev/null
@@ -1,41 +0,0 @@
-// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
-// vi: set et ts=4 sw=4 sts=4:
-/*****************************************************************************
- *   See the file COPYING for full copying permissions.                      *
- *                                                                           *
- *   This program is free software: you can redistribute it and/or modify    *
- *   it under the terms of the GNU General Public License as published by    *
- *   the Free Software Foundation, either version 2 of the License, or       *
- *   (at your option) any later version.                                     *
- *                                                                           *
- *   This program is distributed in the hope that it will be useful,         *
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of          *
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the            *
- *   GNU General Public License for more details.                            *
- *                                                                           *
- *   You should have received a copy of the GNU General Public License       *
- *   along with this program.  If not, see <http://www.gnu.org/licenses/>.   *
- *****************************************************************************/
-/*!
- * \file
- * \ingroup PorousMediumFlow
- * \brief Base class for the model specific class which provides
- *        access to all volume averaged quantities.
- */
-#ifndef DUMUX_DISCRETIZATION_VOLUME_VARIABLES_DEPR_HH
-#define DUMUX_DISCRETIZATION_VOLUME_VARIABLES_DEPR_HH
-
-#warning "This header is deprecated. Use PorousMediumFlowVolumeVariables from dumux/porousmediumflow/volumevariables.hh"
-#include <dune/common/deprecated.hh>
-#include <dumux/porousmediumflow/volumevariables.hh>
-
-namespace Dumux
-{
-
-template<class TypeTag>
-using ImplicitVolumeVariables DUNE_DEPRECATED_MSG("Use PorousMediumFlowVolumeVariables from dumux/porousmediumflow/volumevariables.hh")
-= PorousMediumFlowVolumeVariables<TypeTag>;
-
-} // end namespace Dumux
-
-#endif
-- 
GitLab