Fix fileEncoding violations for checkstyle
[groupbasedpolicy.git] / renderers / ofoverlay / src / test / java / org / opendaylight / groupbasedpolicy / renderer / ofoverlay / statistics / flowcache / FlowCacheFilterTest.java
index 059f55006ef4e76f80c258bd5bb252be7344059b..5b37f5615ebc0a60697ebf7d8fd7988182cb2755 100755 (executable)
@@ -1,28 +1,28 @@
-/*\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
-package org.opendaylight.groupbasedpolicy.renderer.ofoverlay.statistics.flowcache;\r
-\r
-import static org.junit.Assert.assertNotNull;\r
-import static org.junit.Assert.fail;\r
-\r
-import org.junit.Test;\r
-\r
-public class FlowCacheFilterTest {\r
-\r
-    @Test\r
-    public void testBuilder() {\r
-        FlowCacheFilter.FlowCacheFilterBuilder builder = null;\r
-        try {\r
-            builder = FlowCacheFilter.builder();\r
-        } catch (Exception e) {\r
-            fail("Exception thrown: " + e.getMessage());\r
-        }\r
-        assertNotNull(builder);\r
-    }\r
-\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.renderer.ofoverlay.statistics.flowcache;
+
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.fail;
+
+import org.junit.Test;
+
+public class FlowCacheFilterTest {
+
+    @Test
+    public void testBuilder() {
+        FlowCacheFilter.FlowCacheFilterBuilder builder = null;
+        try {
+            builder = FlowCacheFilter.builder();
+        } catch (Exception e) {
+            fail("Exception thrown: " + e.getMessage());
+        }
+        assertNotNull(builder);
+    }
+
+}