diff --git a/include/systems/equation_systems.h b/include/systems/equation_systems.h index cc7e90744b8..d5e432db08b 100644 --- a/include/systems/equation_systems.h +++ b/include/systems/equation_systems.h @@ -326,20 +326,6 @@ class EquationSystems : public ReferenceCountedObject, void get_vars_active_subdomains(const std::vector & names, std::vector> & vars_active_subdomains) const; -#ifdef LIBMESH_ENABLE_DEPRECATED - /** - * Retrieve the solution data for CONSTANT MONOMIALs and/or components of - * CONSTANT MONOMIAL_VECs. If 'names' is populated, only the variables - * corresponding to those names will be retrieved. This can be used to - * filter which variables are retrieved. - * - * \deprecated Call the more appropriately-named build_elemental_solution_vector() - * instead. - */ - void get_solution (std::vector & soln, - std::vector & names) const; -#endif // LIBMESH_ENABLE_DEPRECATED - /** * Retrieve the solution data for CONSTANT MONOMIALs and/or components of * CONSTANT MONOMIAL_VECs. If 'names' is populated, only the variables diff --git a/src/systems/equation_systems.C b/src/systems/equation_systems.C index 75aac685efb..af5f6a71b7d 100644 --- a/src/systems/equation_systems.C +++ b/src/systems/equation_systems.C @@ -1012,17 +1012,6 @@ void EquationSystems::get_vars_active_subdomains(const std::vector -#ifdef LIBMESH_ENABLE_DEPRECATED -void EquationSystems::get_solution (std::vector & soln, - std::vector & names) const -{ - libmesh_deprecated(); - this->build_elemental_solution_vector(soln, names); -} -#endif // LIBMESH_ENABLE_DEPRECATED - - - void EquationSystems::build_elemental_solution_vector (std::vector & soln, std::vector & names) const