Fix Decima64.valueOf(String)
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Builder.java
index 0cf4926f7956697b5621658d1d52e538d5f4d421..4b37e0b15d1bb5ce594709d523b5ffbefb2bb200 100644 (file)
@@ -14,16 +14,7 @@ package org.opendaylight.yangtools.concepts;
  *
  * @author Tony Tkacik <ttkacik@cisco.com>
  */
-public interface Builder<P> extends Mutable {
-
-    /**
-     * Returns instance of the product.
-     *
-     * Multiple calls to this method are not required to return
-     * same instance if the state of the builder was changed.
-     *
-     * @return Newly-built instance
-     */
+public interface Builder<P> extends CheckedBuilder<P, IllegalArgumentException> {
+    @Override
     P build();
-
 }