BUG-865: remove DataSchemaNodeAware
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / stream / NormalizedNodeStreamWriter.java
index 1b1bd097b1988527355cd14dcb1e80ccf3e20682..059ed1b0e4dbcf48aaa00edc0778fcc2b5a79298 100644 (file)
@@ -77,7 +77,7 @@ import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
  * and resources needlessly.
  *
  */
-public interface NormalizedNodeStreamWriter extends Closeable, Flushable, DataSchemaNodeAware {
+public interface NormalizedNodeStreamWriter extends Closeable, Flushable {
 
     /**
      * Methods in this interface allow users to hint the underlying
@@ -482,7 +482,6 @@ public interface NormalizedNodeStreamWriter extends Closeable, Flushable, DataSc
      * @param schema DataSchemaNode
      * @throws NullPointerException if the argument is null
      */
-    @Override
     default void nextDataSchemaNode(@Nonnull final DataSchemaNode schema) {
         Preconditions.checkNotNull(schema);
     }