Remove yang-test
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / toxml / SimpleBinaryAttributeWritingStrategy.java
index f56ee73703b663414d9ae806923c292494a46ea6..6c75c9f0df38834a321c8f258e5eb68f99c92511 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2015, 2017 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -16,10 +16,6 @@ import org.w3c.dom.Document;
 
 public class SimpleBinaryAttributeWritingStrategy extends SimpleAttributeWritingStrategy {
 
-    /**
-     * @param document
-     * @param key
-     */
     public SimpleBinaryAttributeWritingStrategy(final Document document, final String key) {
         super(document, key);
     }
@@ -31,14 +27,12 @@ public class SimpleBinaryAttributeWritingStrategy extends SimpleAttributeWriting
 
         List<?> list = (List<?>) value;
         byte[] decoded = new byte[list.size()];
-        int i = 0;
-        for (Object bAsStr : list) {
-            Preconditions.checkArgument(bAsStr instanceof String, "Unexpected inner value for %s, expected string", value);
-            byte b = Byte.parseByte((String) bAsStr);
-            decoded[i++] = b;
+        int index = 0;
+        for (Object basStr : list) {
+            Preconditions.checkArgument(basStr instanceof String, "Unexpected inner value for %s, expected string",
+                    value);
+            decoded[index++] = Byte.parseByte((String) basStr);
         }
-
         return en.encode(decoded);
     }
-
 }