Updated Branches: refs/heads/wicket-1.5.x f760d31ba -> 4a3a4a62f
WICKET-4406 forward onBeforeDestroyed() Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/4a3a4a62 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/4a3a4a62 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/4a3a4a62 Branch: refs/heads/wicket-1.5.x Commit: 4a3a4a62f187388cf21be608aa83fe97e23b01d1 Parents: f760d31 Author: svenmeier <[email protected]> Authored: Tue Feb 14 08:36:56 2012 +0100 Committer: svenmeier <[email protected]> Committed: Tue Feb 14 08:36:56 2012 +0100 ---------------------------------------------------------------------- .../wicket/ApplicationListenerCollection.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/4a3a4a62/wicket-core/src/main/java/org/apache/wicket/ApplicationListenerCollection.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/ApplicationListenerCollection.java b/wicket-core/src/main/java/org/apache/wicket/ApplicationListenerCollection.java index 3ad11b7..59e6bf8 100644 --- a/wicket-core/src/main/java/org/apache/wicket/ApplicationListenerCollection.java +++ b/wicket-core/src/main/java/org/apache/wicket/ApplicationListenerCollection.java @@ -45,7 +45,7 @@ public class ApplicationListenerCollection extends ListenerCollection<IApplicati { public void notify(IApplicationListener listener) { - listener.onAfterInitialized(application); + listener.onBeforeDestroyed(application); } }); }
