Replace some @deprecated with Formerly deprecated:, because beehive as a whole is deprecated and will never have any more updates

This commit is contained in:
Travis Burtrum 2018-03-26 12:44:31 -04:00
parent 31b1a8b064
commit 93a9145d45
3 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ import javax.servlet.http.HttpServletResponse;
/**
* Interface for controller classes that resolve actions to URIs.
*
* @deprecated This is a legacy interface that is implemented by {@link PageFlowController}, but unused in the framework.
* Formerly deprecated: This is a legacy interface that is implemented by {@link PageFlowController}, but unused in the framework.
*/
public interface ActionResolver
{

View File

@ -87,7 +87,7 @@ public abstract class FlowController extends PageFlowManagedObject
/**
* The system default Locale.
*
* @deprecated Use {@link #getDefaultLocale}.
* Formerly deprecated: Use {@link #getDefaultLocale}.
*/
protected static Locale defaultLocale = DEFAULT_LOCALE;
@ -1872,7 +1872,7 @@ public abstract class FlowController extends PageFlowManagedObject
* attribute for use by the Struts <html:messages> tag (if
* messages="true" is set), if any messages are required. Otherwise,
* ensure that the request attribute is not created.
* @deprecated This method will be removed without replacement in a future release.
* Formerly deprecated: This method will be removed without replacement in a future release.
*
* @param request The servlet request we are processing
* @param messages Messages object

View File

@ -37,7 +37,7 @@ import org.apache.struts.action.ActionMapping;
* <p>
* Data in the current GlobalApp instance can be accessed by databinding tags using the <code>globalApp</code> scope.
*
* @deprecated Use a {@link SharedFlowController} instead.
* Formerly deprecated: Use a {@link SharedFlowController} instead.
* @see PageFlowController
*/
public class GlobalApp