Author: dblevins
Date: Fri Feb 26 22:10:10 2010
New Revision: 916839
URL: http://svn.apache.org/viewvc?rev=916839&view=rev
Log:
reformatting
Modified:
openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/util/AsynchronousRunner.java
Modified:
openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/util/AsynchronousRunner.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/util/AsynchronousRunner.java?rev=916839&r1=916838&r2=916839&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/util/AsynchronousRunner.java
(original)
+++
openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/util/AsynchronousRunner.java
Fri Feb 26 22:10:10 2010
@@ -17,14 +17,10 @@
package org.apache.openejb.util;
import java.lang.reflect.Method;
-import java.util.ArrayList;
-import java.util.Collection;
import java.util.concurrent.Callable;
import java.util.concurrent.Executor;
-import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.FutureTask;
-import java.util.concurrent.TimeUnit;
/**
* Utility class used to invoke methods asynchronously, using a given
{...@link Executor}.
@@ -39,8 +35,9 @@
/**
* Performs the given method invocation asynchronously
- * @param object The object which will have the method invoked
- * @param method The method to be invoked
+ *
+ * @param object The object which will have the method invoked
+ * @param method The method to be invoked
* @param arguments The invocation arguments
* @return A {...@link Future} containing the method return value
*/
@@ -54,6 +51,7 @@
/**
* A {...@link Callable} implementation which just delegates the execution
using
* {...@link Method#invoke(Object, Object[])}
+ *
* @author luis
*/
private class MethodInvoker implements Callable<Object> {