Remove yang-test
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / IdentityMapping.java
index e937e2645b80f72ea41e16d1ca4588ea84edc1b8..759e33e0a6c2e97997d6290966259fee90fd164e 100644 (file)
@@ -20,13 +20,13 @@ public class IdentityMapping {
         this.identityNameToSchemaNode = Maps.newHashMap();
     }
 
-    public void addIdSchemaNode(IdentitySchemaNode node) {
+    public void addIdSchemaNode(final IdentitySchemaNode node) {
         String name = node.getQName().getLocalName();
         Preconditions.checkState(!identityNameToSchemaNode.containsKey(name));
         identityNameToSchemaNode.put(name, node);
     }
 
-    public boolean containsIdName(String idName) {
+    public boolean containsIdName(final String idName) {
         return identityNameToSchemaNode.containsKey(idName);
     }