Blame jmock-2.5.1-DeterministicSchedule.patch

7f0bec7
--- src/org/jmock/lib/concurrent/DeterministicScheduler.java	2008-06-23 14:06:51.000000000 +0200
7f0bec7
+++ src/org/jmock/lib/concurrent/DeterministicScheduler.java-gil	2011-07-27 20:46:08.446224533 +0200
7f0bec7
@@ -110,21 +110,21 @@
7f0bec7
         throw blockingOperationsNotSupported();
7f0bec7
     }
7f0bec7
 
7f0bec7
-    public <T> List<Future<T>> invokeAll(Collection<Callable<T>> tasks) throws InterruptedException {
7f0bec7
+    public <T> List<Future<T>> invokeAll(Collection> tasks) throws InterruptedException {
7f0bec7
         throw blockingOperationsNotSupported();
7f0bec7
     }
7f0bec7
 
7f0bec7
-    public <T> List<Future<T>> invokeAll(Collection<Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException {
7f0bec7
+    public <T> List<Future<T>> invokeAll(Collection> tasks, long timeout, TimeUnit unit) throws InterruptedException {
7f0bec7
         throw blockingOperationsNotSupported();
7f0bec7
     }
7f0bec7
     
7f0bec7
-    public <T> T invokeAny(Collection<Callable<T>> tasks)
7f0bec7
+    public <T> T invokeAny(Collection> tasks)
7f0bec7
         throws InterruptedException, ExecutionException 
7f0bec7
     {
7f0bec7
         throw blockingOperationsNotSupported();
7f0bec7
     }
7f0bec7
 
7f0bec7
-    public <T> T invokeAny(Collection<Callable<T>> tasks, long timeout, TimeUnit unit) 
7f0bec7
+    public <T> T invokeAny(Collection> tasks, long timeout, TimeUnit unit)
7f0bec7
         throws InterruptedException, ExecutionException, TimeoutException 
7f0bec7
     {
7f0bec7
         throw blockingOperationsNotSupported();