diff options
Diffstat (limited to 'libjava/classpath/external/jsr166/java/util/concurrent/Executors.java')
| -rw-r--r-- | libjava/classpath/external/jsr166/java/util/concurrent/Executors.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libjava/classpath/external/jsr166/java/util/concurrent/Executors.java b/libjava/classpath/external/jsr166/java/util/concurrent/Executors.java index f44e66160f7..18e6b33cc9f 100644 --- a/libjava/classpath/external/jsr166/java/util/concurrent/Executors.java +++ b/libjava/classpath/external/jsr166/java/util/concurrent/Executors.java @@ -362,7 +362,7 @@ public class Executors { if (action == null) throw new NullPointerException(); return new Callable<Object>() { - public Object call() { return action.run(); }}; + public Object call() { return action.run(); }}; } /** @@ -376,8 +376,8 @@ public class Executors { public static Callable<Object> callable(final PrivilegedExceptionAction<?> action) { if (action == null) throw new NullPointerException(); - return new Callable<Object>() { - public Object call() throws Exception { return action.run(); }}; + return new Callable<Object>() { + public Object call() throws Exception { return action.run(); }}; } /** @@ -625,13 +625,13 @@ public class Executors { } static class FinalizableDelegatedExecutorService - extends DelegatedExecutorService { - FinalizableDelegatedExecutorService(ExecutorService executor) { - super(executor); - } - protected void finalize() { - super.shutdown(); - } + extends DelegatedExecutorService { + FinalizableDelegatedExecutorService(ExecutorService executor) { + super(executor); + } + protected void finalize() { + super.shutdown(); + } } /** |

