You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2012/06/21 23:27:35 UTC

git commit: Remove code which should have been removed with 6a5decbfb827c80f24e89e3452c2874490168f5d

Updated Branches:
  refs/heads/master 24390d662 -> 950a8b77e


Remove code which should have been removed with 6a5decbfb827c80f24e89e3452c2874490168f5d


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/950a8b77
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/950a8b77
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/950a8b77

Branch: refs/heads/master
Commit: 950a8b77e71cf6787186084a6f6f6ed86ff97362
Parents: 24390d6
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Fri Jun 22 00:26:33 2012 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Fri Jun 22 00:26:33 2012 +0300

----------------------------------------------------------------------
 .../apache/wicket/RequestListenerInterface.java    |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/950a8b77/wicket-core/src/main/java/org/apache/wicket/RequestListenerInterface.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/RequestListenerInterface.java b/wicket-core/src/main/java/org/apache/wicket/RequestListenerInterface.java
index c2c313c..28ad6c7 100644
--- a/wicket-core/src/main/java/org/apache/wicket/RequestListenerInterface.java
+++ b/wicket-core/src/main/java/org/apache/wicket/RequestListenerInterface.java
@@ -242,8 +242,6 @@ public class RequestListenerInterface
 
 	private void internalInvoke(final Component component, final Object target)
 	{
-		Boolean frozen = null;
-
 		// save a reference to the page because the component can be removed
 		// during the invocation of the listener and thus lose its parent
 		Page page = component.getPage();
@@ -276,13 +274,6 @@ public class RequestListenerInterface
 				method.getDeclaringClass() + " targeted at " + target + " on component " +
 				component + " threw an exception", e);
 		}
-		finally
-		{
-			if (frozen != null)
-			{
-				page.setFreezePageId(frozen);
-			}
-		}
 	}
 
 	/**