Remove CSS code
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / toxml / SimpleUnionAttributeWritingStrategy.java
diff --git a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/toxml/SimpleUnionAttributeWritingStrategy.java b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/toxml/SimpleUnionAttributeWritingStrategy.java
deleted file mode 100644 (file)
index 7aeb76b..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * 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,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.controller.config.facade.xml.mapping.attributes.toxml;
-
-import com.google.common.base.Preconditions;
-import java.util.List;
-import java.util.Map;
-import org.opendaylight.controller.config.facade.xml.util.Util;
-import org.w3c.dom.Document;
-
-public class SimpleUnionAttributeWritingStrategy extends SimpleAttributeWritingStrategy {
-
-    public SimpleUnionAttributeWritingStrategy(final Document document, final String key) {
-        super(document, key);
-    }
-
-    @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);
-        Object listOfStrings = ((Map<?, ?>) value).values().iterator().next();
-        Util.checkType(listOfStrings, List.class);
-
-        StringBuilder builder = new StringBuilder();
-        for (Object character : (List<?>) listOfStrings) {
-            Util.checkType(character, String.class);
-            builder.append(character);
-        }
-        return builder.toString();
-    }
-}