[jboss-cvs] JBossAS SVN: r100267 - projects/jboss-threads/trunk/jboss-threads/src/main/java/org/jboss/threads.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Feb 2 12:02:15 EST 2010


Author: david.lloyd at jboss.com
Date: 2010-02-02 12:02:15 -0500 (Tue, 02 Feb 2010)
New Revision: 100267

Modified:
   projects/jboss-threads/trunk/jboss-threads/src/main/java/org/jboss/threads/BlockingExecutor.java
Log:
Minor cleanup

Modified: projects/jboss-threads/trunk/jboss-threads/src/main/java/org/jboss/threads/BlockingExecutor.java
===================================================================
--- projects/jboss-threads/trunk/jboss-threads/src/main/java/org/jboss/threads/BlockingExecutor.java	2010-02-02 16:49:41 UTC (rev 100266)
+++ projects/jboss-threads/trunk/jboss-threads/src/main/java/org/jboss/threads/BlockingExecutor.java	2010-02-02 17:02:15 UTC (rev 100267)
@@ -36,7 +36,7 @@
      * or in the calling thread, at the discretion of the <tt>Executor</tt> implementation.  The call may block
      * or not block, depending on the configuration of the executor.
      *
-     * @param command the task to submit
+     * @param task the task to submit
      *
      * @throws ExecutionInterruptedException if the executor is configured to block, and the thread was interrupted while waiting
      *              for the task to be accepted
@@ -45,7 +45,7 @@
      * @throws RejectedExecutionException if execution is rejected for some other reason
      * @throws NullPointerException if command is {@code null}
      */
-    void execute(Runnable command);
+    void execute(Runnable task);
 
     /**
      * Execute a task, blocking until it can be accepted, or until the calling thread is interrupted.




More information about the jboss-cvs-commits mailing list