changeset 360:912064f2b7ed remote-run/TW-19984-3

Remove unused class
author Dmitry Neverov <dmitry.neverov@jetbrains.com>
date Fri, 27 Jan 2012 20:20:09 +0400
parents b69ecf3fae23
children 262b57d2b94f 065a7a5f583b
files mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/CurrentThreadScheduledExecutor.java
diffstat 1 files changed, 0 insertions(+), 80 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/CurrentThreadScheduledExecutor.java	Fri Jan 27 19:51:59 2012 +0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,80 +0,0 @@
-package jetbrains.buildServer.buildTriggers.vcs.mercurial;
-
-import java.util.Collection;
-import java.util.List;
-import java.util.concurrent.*;
-
-/**
- * @author dmitry.neverov
- */
-public class CurrentThreadScheduledExecutor implements ScheduledExecutorService {
-
-  public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public void shutdown() {
-    //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public List<Runnable> shutdownNow() {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public boolean isShutdown() {
-    return false;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public boolean isTerminated() {
-    return false;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException {
-    return false;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public <T> Future<T> submit(Callable<T> task) {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public <T> Future<T> submit(Runnable task, T result) {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public Future<?> submit(Runnable task) {
-    task.run();
-    return null;
-  }
-
-  public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) throws InterruptedException {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public <T> T invokeAny(Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
-    return null;  //To change body of implemented methods use File | Settings | File Templates.
-  }
-
-  public void execute(Runnable command) {
-    //To change body of implemented methods use File | Settings | File Templates.
-  }
-}