Remove NormalizedNode.getIdentifier()
[yangtools.git] / data / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / LeafSetEntryNode.java
index d563a91a963fd41ddabf039d1a0ea3f04447325a..730f17e8a7b9ca498a00acb8a1a1504693adcfee 100644 (file)
@@ -33,19 +33,4 @@ public non-sealed interface LeafSetEntryNode<T> extends ValueNode<T> {
      */
     @Override
     NodeWithValue<T> name();
-
-    /**
-     * {@inheritDoc}
-     *
-     * <p>
-     * <b>Implementation note</b>
-     * Invocation of {@link NodeWithValue#getValue()} on returned instance of {@link NodeWithValue} must return the
-     * same value as invocation of {@code #body()}, such as following condition is always met:
-     * {@code true == this.getIdentifier().getValue().equals(this.body())}.
-     */
-    @Override
-    @Deprecated(since = "11.0.0", forRemoval = true)
-    default NodeWithValue<T> getIdentifier() {
-        return name();
-    }
 }