From 6f4b54f5f307538d07cfe0aebc27f9fbf4361876 Mon Sep 17 00:00:00 2001 From: moparisthebest Date: Thu, 20 Apr 2017 10:31:49 -0400 Subject: [PATCH] Un-deprecate FormData, there will never be another major version, beehive as a whole is deprecated --- .../main/java/org/apache/beehive/netui/pageflow/FormData.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beehive-netui-core/src/main/java/org/apache/beehive/netui/pageflow/FormData.java b/beehive-netui-core/src/main/java/org/apache/beehive/netui/pageflow/FormData.java index e4f028c..b498427 100644 --- a/beehive-netui-core/src/main/java/org/apache/beehive/netui/pageflow/FormData.java +++ b/beehive-netui-core/src/main/java/org/apache/beehive/netui/pageflow/FormData.java @@ -24,9 +24,11 @@ import org.apache.beehive.netui.pageflow.internal.BaseActionForm; * Base class for form beans associated with action methods in {@link PageFlowController}s. Note that Page Flow actions * may take form beans of any type. * - * @deprecated Page Flow actions can accept form beans of any type; it is not necessary to extend this class. This + * Previously deprecated: Page Flow actions can accept form beans of any type; it is not necessary to extend this class. This * will be removed in the next major version. In general, it's possible to remove extends FormData * and replace it with implements {@link java.io.Serializable}. + * + * There will never be another major version though, so undeprecate here, beehive as a whole is deprecated. :) */ public class FormData extends BaseActionForm {