Skip to content

Commit

Permalink
Deprecate old FEProblemBase method (idaholab#7842)
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsayad committed Dec 5, 2017
1 parent 93be2d9 commit 9d30a91
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions framework/include/base/FEProblemBase.h
Expand Up @@ -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
*/
Expand Down

0 comments on commit 9d30a91

Please sign in to comment.