From: Daniel Arndt Date: Sun, 5 Jul 2020 22:09:07 +0000 (-0400) Subject: Remove deprecated CutOffFunctioNbase member functions X-Git-Tag: v9.3.0-rc1~1337^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a0697538562d0ff0e4cf69b1472bc4e0e26e45f;p=dealii.git Remove deprecated CutOffFunctioNbase member functions --- diff --git a/include/deal.II/base/function_lib.h b/include/deal.II/base/function_lib.h index 7c6cbbf4a7..82656a2d22 100644 --- a/include/deal.II/base/function_lib.h +++ b/include/deal.II/base/function_lib.h @@ -941,22 +941,6 @@ namespace Functions */ virtual ~CutOffFunctionBase() = default; - /** - * Move the center of the ball to new point p. - * - * @deprecated Use set_center() instead. - */ - DEAL_II_DEPRECATED void - new_center(const Point &p); - - /** - * Set the radius of the ball to r. - * - * @deprecated Use set_radius() instead. - */ - DEAL_II_DEPRECATED void - new_radius(const double r); - /** * Set the center of the ball to the point @p p. */ diff --git a/source/base/function_lib_cutoff.cc b/source/base/function_lib_cutoff.cc index d410d53bc1..c3fbdb8507 100644 --- a/source/base/function_lib_cutoff.cc +++ b/source/base/function_lib_cutoff.cc @@ -48,14 +48,6 @@ namespace Functions } - template - void - CutOffFunctionBase::new_center(const Point &p) - { - set_center(p); - } - - template void @@ -75,15 +67,6 @@ namespace Functions - template - void - CutOffFunctionBase::new_radius(const double r) - { - set_radius(r); - } - - - template void CutOffFunctionBase::set_radius(const double r)