From: Wolfgang Bangerth Date: Fri, 2 Jan 2015 19:01:21 +0000 (-0600) Subject: Remove deprecated function Algorithms::ThetaTimestepping::initialize. X-Git-Tag: v8.3.0-rc1~566^2~9 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73fe32e4903fba4fd9638a37114f8d5f7387be34;p=dealii.git Remove deprecated function Algorithms::ThetaTimestepping::initialize. --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 2e041efdba..4df445fbee 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -60,6 +60,7 @@ inconvenience this causes. as a rank-2 tensor rather than as an array of points. - DataOutBase::create_xdmf_entry with 3 arguments. - Algorithms::ThetaTimestepping::operator(). + - Algorithms::ThetaTimestepping::initialize. - Algorithms::Newton::initialize. - MGLevelObject::get_minlevel and MGLevelObject::get_maxlevel. - The versions of FunctionParser::initialize that took a diff --git a/include/deal.II/algorithms/theta_timestepping.h b/include/deal.II/algorithms/theta_timestepping.h index 04a930c9ea..04904cd43d 100644 --- a/include/deal.II/algorithms/theta_timestepping.h +++ b/include/deal.II/algorithms/theta_timestepping.h @@ -232,10 +232,6 @@ namespace Algorithms */ void parse_parameters (ParameterHandler ¶m); - /** - * @deprecated Use parse_parameters(). - */ - void initialize (ParameterHandler ¶m) DEAL_II_DEPRECATED; /** * The current time in the timestepping scheme. */ diff --git a/include/deal.II/algorithms/theta_timestepping.templates.h b/include/deal.II/algorithms/theta_timestepping.templates.h index f53557bfa7..8b498ec63e 100644 --- a/include/deal.II/algorithms/theta_timestepping.templates.h +++ b/include/deal.II/algorithms/theta_timestepping.templates.h @@ -60,14 +60,6 @@ namespace Algorithms } - template - void - ThetaTimestepping::initialize (ParameterHandler ¶m) - { - parse_parameters(param); - } - - template void ThetaTimestepping::operator() (AnyData &out, const AnyData &in)