WICKET-4377 Deprecate Component#onMarkupAttached()
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/b04efced Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/b04efced Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/b04efced Branch: refs/heads/sandbox/feedback Commit: b04efced469f6e7e89cf670b0cb3b41e7d46fa54 Parents: 0a6706a Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Wed Feb 1 10:59:53 2012 +0200 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Wed Feb 1 10:59:53 2012 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/wicket/Component.java | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/b04efced/wicket-core/src/main/java/org/apache/wicket/Component.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/Component.java b/wicket-core/src/main/java/org/apache/wicket/Component.java index 2552fea..a97d031 100644 --- a/wicket-core/src/main/java/org/apache/wicket/Component.java +++ b/wicket-core/src/main/java/org/apache/wicket/Component.java @@ -389,8 +389,6 @@ public abstract class Component private static final int FLAG_PREPARED_FOR_RENDER = 0x4000000; private static final int FLAG_AFTER_RENDERING = 0x8000000; - private static final int FLAG_MARKUP_ATTACHED = 0x10000000; - /** * Flag that restricts visibility of a component when set to true. This is usually used when a * component wants to restrict visibility of another component. Calling
