Remove redundant interface declarations
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / ImmutableLeafNodeSchemaAwareBuilder.java
index fdc174099a756979306cae2e06681a2d84171882..c31fe77ac82083d12c53d1b1f88caa241e641274 100644 (file)
@@ -23,14 +23,14 @@ public final class ImmutableLeafNodeSchemaAwareBuilder<T> extends ImmutableLeafN
     }
 
     @Override
-    public NormalizedNodeAttrBuilder<NodeIdentifier, T, LeafNode<T>> withValue(final T value) {
+    public NormalizedNodeAttrBuilder<NodeIdentifier, T, LeafNode<T>> withValue(final T withValue) {
         // TODO: check value type
-        return super.withValue(value);
+        return super.withValue(withValue);
     }
 
     @Override
     public NormalizedNodeAttrBuilder<NodeIdentifier, T, LeafNode<T>> withNodeIdentifier(
-            final NodeIdentifier nodeIdentifier) {
+            final NodeIdentifier withNodeIdentifier) {
         throw new UnsupportedOperationException("Node identifier created from schema");
     }
 }