Fix javadoc warnings in common concepts
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / ProductAwareBuilder.java
index b2c2d049e0c70dcfedf1e8c672c079cfd74d2fc2..184e467d443c967ce2c7ae553e606184b59dc935 100644 (file)
@@ -17,7 +17,7 @@ package org.opendaylight.yangtools.concepts;
 public interface ProductAwareBuilder<P> extends Builder<P> {
        /**
         * Return the hash code of the product. This has to be equivalent
-        * of calling {@link #toInstance()}.{@link #hashCode()}.
+        * of calling {@link #toInstance()}.{@link Object#hashCode()}.
         *
         * @return the hash code of the product.
         */
@@ -26,7 +26,7 @@ public interface ProductAwareBuilder<P> extends Builder<P> {
        /**
         * Check whether an instance of the product that would be created
         * by the builder is equal to an existing instance. This has to
-        * be equivalent of calling {@link #toInstance()}.{@link #equals(Object)}.
+        * be equivalent of calling {@link #toInstance()}.{@link Object#equals(Object)}.
         *
         * @param product Product instance
         * @return Return true if the product is equal to the would-be