remove test main

This commit is contained in:
fjy 2014-04-22 12:54:16 -07:00
parent 8fd39c63d5
commit fcc1366712
1 changed files with 0 additions and 16 deletions

View File

@ -162,20 +162,4 @@ public class ChainedExecutionQueryRunner<T> implements QueryRunner<T>
}
);
}
public static void main(String[] args) throws Exception
{
ExecutorService foo = Executors.newFixedThreadPool(1);
Future test = foo.submit(
new Callable<List>()
{
@Override
public List call() throws Exception
{
throw new ISE("");
}
}
);
System.out.println(Lists.newArrayList(test));
}
}