diff --git a/dumux/common/parameters.hh b/dumux/common/parameters.hh
index 9e4c1926272926800334180ec53d37e684171e23..a9c2369db8e4aea11333a6538ba71c984688c5e6 100644
--- a/dumux/common/parameters.hh
+++ b/dumux/common/parameters.hh
@@ -392,15 +392,6 @@ bool hasParamInGroup(const std::string& paramGroup, const std::string& param)
     return Parameters::getTree().hasKeyInGroup(param, paramGroup);
 }
 
-DUNE_DEPRECATED_MSG("haveParam is deprecated, please use hasParam instead.")
-bool haveParam(const std::string& param)
-{ return hasParam(param); }
-
-template<typename... Args>
-DUNE_DEPRECATED_MSG("haveParamInGroup is deprecated, please use hasParamInGroup instead.")
-bool haveParamInGroup(const std::string& paramGroup, const std::string& param)
-{ return hasParamInGroup(paramGroup, param); }
-
 } // namespace Dumux
 
 #endif