summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-08-02 18:26:37 +0200
committerMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-08-05 18:37:14 +0200
commit57bca5f999ca1e5b3a3e3226f68249bac54d57cc (patch)
treed9a9577d9057ab39b88630768613c71e46d6c280
parentdev-java/jisp: remove unused file (diff)
downloadgentoo-57bca5f999ca1e5b3a3e3226f68249bac54d57cc.tar.gz
gentoo-57bca5f999ca1e5b3a3e3226f68249bac54d57cc.tar.bz2
gentoo-57bca5f999ca1e5b3a3e3226f68249bac54d57cc.zip
dev-java/jmock: remove unused patch
-rw-r--r--dev-java/jmock/files/2.5.1-invokeAll-invokeAny.patch30
1 files changed, 0 insertions, 30 deletions
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 <T> List<Future<T>> invokeAll(Collection<Callable<T>> tasks) throws InterruptedException {
-+ public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) throws InterruptedException {
- throw blockingOperationsNotSupported();
- }
-
-- public <T> List<Future<T>> invokeAll(Collection<Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException {
-+ public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException {
- throw blockingOperationsNotSupported();
- }
-
-- public <T> T invokeAny(Collection<Callable<T>> tasks)
-+ public <T> T invokeAny(Collection<? extends Callable<T>> tasks)
- throws InterruptedException, ExecutionException
- {
- throw blockingOperationsNotSupported();
- }
-
-- public <T> T invokeAny(Collection<Callable<T>> tasks, long timeout, TimeUnit unit)
-+ public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
- throws InterruptedException, ExecutionException, TimeoutException
- {
- throw blockingOperationsNotSupported();