From 57bca5f999ca1e5b3a3e3226f68249bac54d57cc Mon Sep 17 00:00:00 2001 From: "Michael Mair-Keimberger (asterix)" Date: Tue, 2 Aug 2016 18:26:37 +0200 Subject: dev-java/jmock: remove unused patch --- .../jmock/files/2.5.1-invokeAll-invokeAny.patch | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 dev-java/jmock/files/2.5.1-invokeAll-invokeAny.patch (limited to 'dev-java/jmock') diff --git a/dev-java/jmock/files/2.5.1-invokeAll-invokeAny.patch b/dev-java/jmock/files/2.5.1-invokeAll-invokeAny.patch deleted file mode 100644 index 7acfc8598f03..000000000000 --- a/dev-java/jmock/files/2.5.1-invokeAll-invokeAny.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff --git a/jmock-2.5.1/src/org/jmock/lib/concurrent/DeterministicScheduler.java b/jmock-2.5.1/src/org/jmock/lib/concurrent/DeterministicScheduler.java -index 6dbc020..0dce41c 100644 ---- a/jmock-2.5.1/src/org/jmock/lib/concurrent/DeterministicScheduler.java -+++ b/jmock-2.5.1/src/org/jmock/lib/concurrent/DeterministicScheduler.java -@@ -110,21 +110,21 @@ public class DeterministicScheduler implements ScheduledExecutorService { - throw blockingOperationsNotSupported(); - } - -- public List> invokeAll(Collection> tasks) throws InterruptedException { -+ public List> invokeAll(Collection> tasks) throws InterruptedException { - throw blockingOperationsNotSupported(); - } - -- public List> invokeAll(Collection> tasks, long timeout, TimeUnit unit) throws InterruptedException { -+ public List> invokeAll(Collection> tasks, long timeout, TimeUnit unit) throws InterruptedException { - throw blockingOperationsNotSupported(); - } - -- public T invokeAny(Collection> tasks) -+ public T invokeAny(Collection> tasks) - throws InterruptedException, ExecutionException - { - throw blockingOperationsNotSupported(); - } - -- public T invokeAny(Collection> tasks, long timeout, TimeUnit unit) -+ public T invokeAny(Collection> tasks, long timeout, TimeUnit unit) - throws InterruptedException, ExecutionException, TimeoutException - { - throw blockingOperationsNotSupported(); -- cgit v1.2.3-65-gdbad