Repository: wicket Updated Branches: refs/heads/master 2e327ccee -> 8088d460a
WICKET-3335 Fix the javadoc of MarkupContainer#dequeue() Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/8088d460 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/8088d460 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/8088d460 Branch: refs/heads/master Commit: 8088d460a2c1422e3342bdf317be90dbdc606a26 Parents: 2e327cc Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Tue Feb 25 14:45:52 2014 +0200 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Tue Feb 25 14:45:52 2014 +0200 ---------------------------------------------------------------------- wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/8088d460/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java b/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java index 616654f..914112a 100644 --- a/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java +++ b/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java @@ -2052,7 +2052,7 @@ public abstract class MarkupContainer extends Component implements Iterable<Comp /** * Dequeues components. The default implementation iterates direct children of this container - * found in the markup (retrieved via {@link #getDequeueMarkup()}) and tries to find matching + * found in its markup and tries to find matching * components in queues filled by a call to {@link #queue(Component...)}. It then delegates the * dequeueing to these children. *
