Remove yang-test
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / toxml / SimpleUnionAttributeWritingStrategy.java
index 969ef002aff5333b4a7395a7271f17d6612a4eb9..7aeb76b8648d6ccad21f32a598e8d80a3439ffc9 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,27 +16,23 @@ import org.w3c.dom.Document;
 
 public class SimpleUnionAttributeWritingStrategy extends SimpleAttributeWritingStrategy {
 
-    /**
-     * @param document
-     * @param key
-     */
-    public SimpleUnionAttributeWritingStrategy(Document document, String key) {
+    public SimpleUnionAttributeWritingStrategy(final Document document, final String key) {
         super(document, key);
     }
 
-    protected Object preprocess(Object value) {
+    @Override
+    protected Object preprocess(final Object value) {
         Util.checkType(value, Map.class);
-        Preconditions.checkArgument(((Map<?, ?>)value).size() == 1, "Unexpected number of values in %s, expected 1", value);
+        Preconditions.checkArgument(((Map<?, ?>) value).size() == 1, "Unexpected number of values in %s, expected 1",
+                value);
         Object listOfStrings = ((Map<?, ?>) value).values().iterator().next();
         Util.checkType(listOfStrings, List.class);
 
-        StringBuilder b = new StringBuilder();
-        for (Object character: (List<?>)listOfStrings) {
+        StringBuilder builder = new StringBuilder();
+        for (Object character : (List<?>) listOfStrings) {
             Util.checkType(character, String.class);
-            b.append(character);
+            builder.append(character);
         }
-
-        return b.toString();
+        return builder.toString();
     }
-
 }