Deprecate (Checked)Builder for removal
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Builder.java
index ad48291db05aafb3076109edff2586c87a9a545e..feec797b0711aa40a8d173e8ae9c858ad84f19f8 100644 (file)
@@ -15,7 +15,7 @@ package org.opendaylight.yangtools.concepts;
  * @deprecated This is an over-arching concept whose {@link #build()} method hides caller hierarchy. Users are advised
  *             to migrate away, either without a replacement interface, or with a proper domain-specific interface.
  */
-@Deprecated(since = "8.0.0")
+@Deprecated(since = "8.0.0", forRemoval = true)
 public interface Builder<P> extends CheckedBuilder<P, IllegalArgumentException> {
     @Override
     P build();