Deprecate newDataInputWithoutValidation() for removal
[yangtools.git] / yang / yang-data-codec-binfmt / src / main / java / org / opendaylight / yangtools / yang / data / codec / binfmt / NormalizedNodeDataInput.java
index 30543358813edd220444b89d4167e3353eb1cc4a..5e4c4cda9040c8ed1d714b56d4a0f9ade18d80ee 100644 (file)
@@ -110,8 +110,7 @@ public interface NormalizedNodeDataInput extends DataInput {
      * @return a new {@link NormalizedNodeDataInput} instance
      * @deprecated Use {@link #newDataInput(DataInput)} instead.
      */
-    // FIXME: 5.0.0: deprecate for removal
-    @Deprecated
+    @Deprecated(forRemoval = true)
     static @NonNull NormalizedNodeDataInput newDataInputWithoutValidation(final @NonNull DataInput input) {
         return new VersionedNormalizedNodeDataInput(input);
     }