Github user klopfdreh commented on a diff in the pull request: https://github.com/apache/wicket/pull/268#discussion_r172101026 --- Diff: wicket-core/src/main/java/org/apache/wicket/DequeueContext.java --- @@ -286,9 +287,8 @@ public MarkupContainer popContainer() */ public Component findComponentToDequeue(ComponentTag tag) { - for (int j = containers.size() - 1; j >= 0; j--) + for (MarkupContainer container : containers) --- End diff -- See review of line 230.
---