Repository: wicket
Updated Branches:
  refs/heads/wicket-6.x 3371205ab -> 6fb280f69


Remove a member variable that is not used


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

Branch: refs/heads/wicket-6.x
Commit: 4876e32dd1520f4afc9e960b6e3646cb00fd2454
Parents: 3371205
Author: Martin Tzvetanov Grigorov <mgrigo...@apache.org>
Authored: Tue Jun 17 15:50:28 2014 +0300
Committer: Martin Tzvetanov Grigorov <mgrigo...@apache.org>
Committed: Tue Jun 17 15:50:28 2014 +0300

----------------------------------------------------------------------
 .../request/handler/ListenerInvocationNotAllowedException.java    | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/4876e32d/wicket-core/src/main/java/org/apache/wicket/core/request/handler/ListenerInvocationNotAllowedException.java
----------------------------------------------------------------------
diff --git 
a/wicket-core/src/main/java/org/apache/wicket/core/request/handler/ListenerInvocationNotAllowedException.java
 
b/wicket-core/src/main/java/org/apache/wicket/core/request/handler/ListenerInvocationNotAllowedException.java
index 6ce99b2..a97d99d 100644
--- 
a/wicket-core/src/main/java/org/apache/wicket/core/request/handler/ListenerInvocationNotAllowedException.java
+++ 
b/wicket-core/src/main/java/org/apache/wicket/core/request/handler/ListenerInvocationNotAllowedException.java
@@ -32,7 +32,6 @@ public class ListenerInvocationNotAllowedException extends 
RuntimeException
 
        private final Component component;
        private final Behavior behavior;
-       private final RequestListenerInterface iface;
 
        /**
         * Constructor
@@ -46,10 +45,8 @@ public class ListenerInvocationNotAllowedException extends 
RuntimeException
                Component component, Behavior behavior, String message)
        {
                super(message + detail(iface, component, behavior));
-               this.iface = iface;
                this.component = component;
                this.behavior = behavior;
-
        }
 
        private static String detail(RequestListenerInterface iface, Component 
component,

Reply via email to