From 9d30a919b0c156a86892adb7a20b24ae0af43b4a Mon Sep 17 00:00:00 2001 From: Alex Lindsay Date: Tue, 5 Dec 2017 15:45:19 -0700 Subject: [PATCH] Deprecate old FEProblemBase method (#7842) --- framework/include/base/FEProblemBase.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/framework/include/base/FEProblemBase.h b/framework/include/base/FEProblemBase.h index 7cd1baf60f46..a8a08688d832 100644 --- a/framework/include/base/FEProblemBase.h +++ b/framework/include/base/FEProblemBase.h @@ -829,6 +829,17 @@ class FEProblemBase : public SubProblem, public Restartable */ void incrementMultiAppTStep(ExecFlagType type); + /** + * Deprecated method; use finishMultiAppStep and/or incrementMultiAppTStep depending + * on your purpose + */ + void advanceMultiApps(ExecFlagType type) + { + mooseDeprecated("Deprecated method; use finishMultiAppStep and/or incrementMultiAppTStep " + "depending on your purpose"); + finishMultiAppStep(type); + } + /** * Finish the MultiApp time step (endStep, postStep) associated with the ExecFlagType */