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 d6db3c32113d8590370378c95a519976ca78f641..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,29 +16,23 @@ import org.w3c.dom.Document;
 
 public class SimpleBinaryAttributeWritingStrategy extends SimpleAttributeWritingStrategy {
 
-    /**
-     * @param document
-     * @param key
-     */
-    public SimpleBinaryAttributeWritingStrategy(Document document, String key) {
+    public SimpleBinaryAttributeWritingStrategy(final Document document, final String key) {
         super(document, key);
     }
 
     @Override
-    protected Object preprocess(Object value) {
+    protected Object preprocess(final Object value) {
         Util.checkType(value, List.class);
         BaseEncoding en = BaseEncoding.base64();
 
         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);
     }
-
 }