Follow the convention of javadoc used in the project

Insert a blank line between the brief desciption and paramter description.

Change-Id: Iad27f20aa862f84a4278624f0df75f98ab9e543f
diff --git a/core/api/src/main/java/org/onlab/onos/net/statistic/StatisticStore.java b/core/api/src/main/java/org/onlab/onos/net/statistic/StatisticStore.java
index 96fcc11..6eefdbe 100644
--- a/core/api/src/main/java/org/onlab/onos/net/statistic/StatisticStore.java
+++ b/core/api/src/main/java/org/onlab/onos/net/statistic/StatisticStore.java
@@ -28,24 +28,28 @@
 
     /**
      * Lay the foundation for receiving flow stats for this rule.
+     *
      * @param rule a {@link org.onlab.onos.net.flow.FlowRule}
      */
     void prepareForStatistics(FlowRule rule);
 
     /**
      * Remove entries associated with this rule.
+     *
      * @param rule {@link org.onlab.onos.net.flow.FlowRule}
      */
     void removeFromStatistics(FlowRule rule);
 
     /**
      * Adds a stats observation for a flow rule.
+     *
      * @param rule a {@link org.onlab.onos.net.flow.FlowEntry}
      */
     void addOrUpdateStatistic(FlowEntry rule);
 
     /**
      * Fetches the current observed stats values.
+     *
      * @param connectPoint the port to fetch information for
      * @return set of current flow rules
      */
@@ -53,6 +57,7 @@
 
     /**
      * Fetches the current observed stats values.
+     *
      * @param connectPoint the port to fetch information for
      * @return set of current values
      */