X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=common%2Fconcepts%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fconcepts%2FProductAwareBuilder.java;h=184e467d443c967ce2c7ae553e606184b59dc935;hb=bb888b20e6978a994405fa37464e7bb0357c89b6;hp=b2c2d049e0c70dcfedf1e8c672c079cfd74d2fc2;hpb=194f04e062a382cd234ac3f8e1b69f269de0b8fb;p=yangtools.git diff --git a/common/concepts/src/main/java/org/opendaylight/yangtools/concepts/ProductAwareBuilder.java b/common/concepts/src/main/java/org/opendaylight/yangtools/concepts/ProductAwareBuilder.java index b2c2d049e0..184e467d44 100644 --- a/common/concepts/src/main/java/org/opendaylight/yangtools/concepts/ProductAwareBuilder.java +++ b/common/concepts/src/main/java/org/opendaylight/yangtools/concepts/ProductAwareBuilder.java @@ -17,7 +17,7 @@ package org.opendaylight.yangtools.concepts; public interface ProductAwareBuilder

extends Builder

{ /** * 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

extends Builder

{ /** * 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