Fixing javadocs.

Change-Id: I100488664315af9c1b7faffab2d66ea3263d57ca
diff --git a/utils/misc/src/main/java/org/onlab/util/BoundedThreadPool.java b/utils/misc/src/main/java/org/onlab/util/BoundedThreadPool.java
index 6fb1c90..9d476d2 100644
--- a/utils/misc/src/main/java/org/onlab/util/BoundedThreadPool.java
+++ b/utils/misc/src/main/java/org/onlab/util/BoundedThreadPool.java
@@ -66,7 +66,8 @@
     /**
      * Returns a fixed-size, bounded executor service.
      *
-     * @param threadFactory thread factory for the worker threads.
+     * @param numberOfThreads number of threads in the pool
+     * @param threadFactory   thread factory for the worker threads.
      * @return the bounded thread pool
      */
     public static BoundedThreadPool newFixedThreadPool(int numberOfThreads, ThreadFactory threadFactory) {
@@ -112,6 +113,7 @@
 
     // TODO schedule this with a fixed delay from a scheduled executor
     private final AtomicLong lastPrinted = new AtomicLong(0L);
+
     private void periodicallyPrintStats() {
         long now = System.currentTimeMillis();
         long prev = lastPrinted.get();