Github user klopfdreh commented on a diff in the pull request:
https://github.com/apache/wicket/pull/268#discussion_r172125436
--- Diff: wicket-core/src/main/java/org/apache/wicket/DequeueContext.java
---
@@ -226,9 +227,9 @@ private DequeueTagAction canDequeueTag(ComponentTag
open)
}
DequeueTagAction action;
- for (int i = containers.size() - 1; i >= 0; i--)
+ for (MarkupContainer container : containers)
--- End diff --
Ah ok, thanks a lot for the explanation. Great changes ð ---
