Fixing sonar issues 3
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / MutableCompositeNode.java
index f9f5a030aaa8237d7b93bc4b21b0d0d4d0b9de19..105981ac2a6d2bf071761221fbf7e880e93c035b 100755 (executable)
@@ -1,28 +1,28 @@
-/*\r
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-package org.opendaylight.yangtools.yang.data.api;\r
-\r
-import java.util.List;\r
-\r
-\r
-/**\r
- * @author michal.rehak\r
- *\r
- */\r
-public interface MutableCompositeNode extends MutableNode<List<Node<?>>>, CompositeNode {\r
-    \r
-    /**\r
-     * update internal map\r
-     */\r
-    public void init();\r
-    \r
-    /**\r
-     * @return original node, if available\r
-     */\r
-    CompositeNode getOriginal();\r
-}\r
+/*
+ * 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.yangtools.yang.data.api;
+
+import java.util.List;
+
+
+/**
+ * @author michal.rehak
+ *
+ */
+public interface MutableCompositeNode extends MutableNode<List<Node<?>>>, CompositeNode {
+    
+    /**
+     * update internal map
+     */
+    void init();
+    
+    /**
+     * @return original node, if available
+     */
+    CompositeNode getOriginal();
+}