Remove CSS code
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / ftl / model / HeaderSerializer.java
diff --git a/opendaylight/config/yang-jmx-generator-plugin/src/main/java/org/opendaylight/controller/config/yangjmxgenerator/plugin/ftl/model/HeaderSerializer.java b/opendaylight/config/yang-jmx-generator-plugin/src/main/java/org/opendaylight/controller/config/yangjmxgenerator/plugin/ftl/model/HeaderSerializer.java
deleted file mode 100644 (file)
index 5eabeab..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright (c) 2013 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.yangjmxgenerator.plugin.ftl.model;
-
-import java.util.Date;
-
-import org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator;
-
-public class HeaderSerializer {
-    private static final String GENERATOR_CLASS = JMXGenerator.class.getCanonicalName();
-
-    public static String toString(Header header) {
-        return "Generated file" + "\n" +
-                "\n" +
-                "Generated from: " +
-                "yang module name: " + header.getYangModuleName() +
-                " yang module local name: " + header.getYangModuleLocalName() + "\n" +
-                "Generated by: " + GENERATOR_CLASS + "\n" +
-                "Generated at: " + new Date() + "\n" +
-                "\n" +
-                "Do not modify this file unless it is present under src/main directory ";
-    }
-
-}