Fix Javadoc comments with adding <p> tags

Change-Id: I8c2fe1dbfab144530c950fe4038c7f59cff970bc
diff --git a/src/main/java/net/onrc/onos/core/newintent/MultiPointToSinglePointIntent.java b/src/main/java/net/onrc/onos/core/newintent/MultiPointToSinglePointIntent.java
index 1430e00..51ce25e 100644
--- a/src/main/java/net/onrc/onos/core/newintent/MultiPointToSinglePointIntent.java
+++ b/src/main/java/net/onrc/onos/core/newintent/MultiPointToSinglePointIntent.java
@@ -15,7 +15,9 @@
 /**
  * The class represents multiple sources, single destination tree like connectivity.
  *
+ * <p>
  * This class is intended to be used for the SDN-IP application.
+ * </p>
  */
 public class MultiPointToSinglePointIntent extends Intent {
     private final ImmutableList<SwitchPort> ingressPorts;
diff --git a/src/main/java/net/onrc/onos/core/newintent/PointToPointIntent.java b/src/main/java/net/onrc/onos/core/newintent/PointToPointIntent.java
index e09c08b..032f931 100644
--- a/src/main/java/net/onrc/onos/core/newintent/PointToPointIntent.java
+++ b/src/main/java/net/onrc/onos/core/newintent/PointToPointIntent.java
@@ -107,9 +107,11 @@
     /**
      * Compares the specified object with this intent for equality.
      *
+     * <p>
      * Note: Comparison of idleTimeout value is done in micro-second precision.
      * Then the value less than a micro second is truncated. In addition, the comparison
      * is done between long values. It causes overflow if the idleTimeout is large.
+     * </p>
      *
      * @param obj the object to be compared with this intent for equality.
      * @return true if the specified object is equal to this intent.