commit: 57bca5f999ca1e5b3a3e3226f68249bac54d57cc
Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail
<DOT> com>
AuthorDate: Tue Aug 2 16:26:37 2016 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Fri Aug 5 16:37:14 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57bca5f9
dev-java/jmock: remove unused patch
.../jmock/files/2.5.1-invokeAll-invokeAny.patch | 30 ----------------------
1 file changed, 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 7acfc85..0000000
--- 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();