Repository: wicket
Updated Branches:
  refs/heads/master 4ed3c46bf -> ee7382032


Remove Executor#call(Callable). It has never been used by the framework.


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

Branch: refs/heads/master
Commit: 92369a8c55cb0a7100370bfc690c12471e2f1f87
Parents: 4ed3c46
Author: Martin Tzvetanov Grigorov <[email protected]>
Authored: Fri Nov 18 22:34:33 2016 +0100
Committer: Martin Tzvetanov Grigorov <[email protected]>
Committed: Fri Nov 18 22:34:33 2016 +0100

----------------------------------------------------------------------
 .../apache/wicket/protocol/ws/concurrent/Executor.java    | 10 ----------
 1 file changed, 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/92369a8c/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/concurrent/Executor.java
----------------------------------------------------------------------
diff --git 
a/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/concurrent/Executor.java
 
b/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/concurrent/Executor.java
index 8d6c4ff..d3e18bb 100644
--- 
a/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/concurrent/Executor.java
+++ 
b/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/concurrent/Executor.java
@@ -16,8 +16,6 @@
  */
 package org.apache.wicket.protocol.ws.concurrent;
 
-import java.util.concurrent.Callable;
-
 /**
  * An abstraction over all available executor services.
  * The application may use {@link java.util.concurrent.Executor} or
@@ -31,12 +29,4 @@ public interface Executor
         * @see     java.lang.Thread#run()
         */
        void run(Runnable command);
-
-       /**
-        * Computes a result, or throws an exception if unable to do so.
-        *
-        * @return computed result
-        * @throws Exception if unable to compute a result
-        */
-       <T> T call(Callable<T> callable) throws Exception;
 }

Reply via email to