From 699a6643885b2c3cc982a5992bca44805a6a3bfd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= <dennis.glaeser@iws.uni-stuttgart.de>
Date: Thu, 18 Oct 2018 12:12:42 +0200
Subject: [PATCH] [md][newton] remove obsolete constructor for instationary
 probs

---
 dumux/multidomain/newtonsolver.hh | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

diff --git a/dumux/multidomain/newtonsolver.hh b/dumux/multidomain/newtonsolver.hh
index 8bb6a7919b..b7f860d57f 100644
--- a/dumux/multidomain/newtonsolver.hh
+++ b/dumux/multidomain/newtonsolver.hh
@@ -49,7 +49,7 @@ class MultiDomainNewtonSolver: public NewtonSolver<Assembler, LinearSolver, Reas
 public:
 
     /*!
-     * \brief Constructor for stationary problems
+     * \brief The constructor
      */
     MultiDomainNewtonSolver(std::shared_ptr<Assembler> assembler,
                             std::shared_ptr<LinearSolver> linearSolver,
@@ -60,20 +60,6 @@ public:
     , couplingManager_(couplingManager)
     {}
 
-    /*!
-     * \brief Constructor for instationary problems
-     */
-    MultiDomainNewtonSolver(std::shared_ptr<Assembler> assembler,
-                            std::shared_ptr<LinearSolver> linearSolver,
-                            std::shared_ptr<CouplingManager> couplingManager,
-                            std::shared_ptr<TimeLoop<Scalar>> timeLoop,
-                            const Comm& comm = Dune::MPIHelper::getCollectiveCommunication(),
-                            const std::string& paramGroup = "")
-    : ParentType(assembler, linearSolver, timeLoop, comm, paramGroup)
-    , couplingManager_(couplingManager)
-    {}
-
-
     /*!
      * \brief Indicates the beginning of a Newton iteration.
      */
-- 
GitLab