Fix fileEncoding violations for checkstyle
[groupbasedpolicy.git] / neutron-vpp-mapper / src / main / java / org / opendaylight / groupbasedpolicy / neutron / vpp / mapper / processors / MappingProvider.java
index fb8b6859b47bd59a636a7a802151679f0040162c..75cf5d1b5b4b4231f54e8680d42af195caba00b8 100644 (file)
@@ -1,23 +1,23 @@
-/*\r
- * Copyright (c) 2016 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
-\r
-package org.opendaylight.groupbasedpolicy.neutron.vpp.mapper.processors;\r
-\r
-import org.opendaylight.yangtools.yang.binding.DataObject;\r
-import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;\r
-\r
-interface MappingProvider<T extends DataObject> {\r
-\r
-    InstanceIdentifier<T> getNeutronDtoIid();\r
-\r
-    void processCreatedNeutronDto(T t);\r
-\r
-    void processUpdatedNeutronDto(T original, T delta);\r
-\r
-    void processDeletedNeutronDto(T t);\r
-}\r
+/*
+ * Copyright (c) 2016 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.groupbasedpolicy.neutron.vpp.mapper.processors;
+
+import org.opendaylight.yangtools.yang.binding.DataObject;
+import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
+
+interface MappingProvider<T extends DataObject> {
+
+    InstanceIdentifier<T> getNeutronDtoIid();
+
+    void processCreatedNeutronDto(T t);
+
+    void processUpdatedNeutronDto(T original, T delta);
+
+    void processDeletedNeutronDto(T t);
+}