Fix checkstyle issues reported by odlparent-3.0.0's checkstyle
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / leafref / LeafRefContextBuilder.java
index ba8dd12a395698faf33c5c403956f9ac4bc5880a..e29fa3a28e7e443c0a1b96e64b57720d610ea25a 100644 (file)
@@ -69,16 +69,16 @@ class LeafRefContextBuilder implements Builder<LeafRefContext> {
         return isReferencedBy;
     }
 
-    public void setReferencedBy(final boolean isReferencedBy) {
-        this.isReferencedBy = isReferencedBy;
+    public void setReferencedBy(final boolean referencedBy) {
+        this.isReferencedBy = referencedBy;
     }
 
     public boolean isReferencing() {
         return isReferencing;
     }
 
-    public void setReferencing(final boolean isReferencing) {
-        this.isReferencing = isReferencing;
+    public void setReferencing(final boolean referencing) {
+        this.isReferencing = referencing;
     }
 
     public void addReferencingChild(final LeafRefContext child, final QName childQName) {