]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/parsing/utils/LaxUTF8Reader.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / internal / parsing / utils / LaxUTF8Reader.java
index c9f28ef012feb0253cc19c73ac613ca95a8c8ab0..96e1bae72dc15a16b4238808c7c82a7f3350edf9 100644 (file)
@@ -1,41 +1,41 @@
-package org.simantics.scl.compiler.internal.parsing.utils;\r
-\r
-import java.io.BufferedInputStream;\r
-import java.io.FileInputStream;\r
-import java.io.IOException;\r
-import java.io.InputStreamReader;\r
-import java.nio.charset.Charset;\r
-import java.nio.charset.CharsetDecoder;\r
-import java.nio.charset.CodingErrorAction;\r
-\r
-public class LaxUTF8Reader extends InputStreamReader {\r
-    private static final Charset UTF8 = Charset.forName("UTF-8");\r
-    private static final CharsetDecoder UTF8_DECODER = UTF8.newDecoder();\r
-    \r
-    static {\r
-        UTF8_DECODER.onMalformedInput(CodingErrorAction.REPLACE);\r
-        UTF8_DECODER.onUnmappableCharacter(CodingErrorAction.REPLACE);\r
-        UTF8_DECODER.replaceWith("\ufffd");\r
-    }\r
-    \r
-    /**\r
-     * Skips possible BOM (ef bb bf) in the beginning of the stream.\r
-     */\r
-    private static BufferedInputStream skipBOM(BufferedInputStream stream) throws IOException {\r
-        stream.mark(4);\r
-        if(stream.read() == 0xef)\r
-            if(stream.read() == 0xbb)\r
-                if(stream.read() == 0xbf)\r
-                    return stream;\r
-        stream.reset();\r
-        return stream;\r
-    }\r
-\r
-    public LaxUTF8Reader(BufferedInputStream stream) throws IOException {\r
-        super(skipBOM(stream), UTF8_DECODER);\r
-    }\r
-    \r
-    public LaxUTF8Reader(String fileName) throws IOException {\r
-        this(new BufferedInputStream(new FileInputStream(fileName)));\r
-    }\r
-}\r
+package org.simantics.scl.compiler.internal.parsing.utils;
+
+import java.io.BufferedInputStream;
+import java.io.FileInputStream;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import java.nio.charset.Charset;
+import java.nio.charset.CharsetDecoder;
+import java.nio.charset.CodingErrorAction;
+
+public class LaxUTF8Reader extends InputStreamReader {
+    private static final Charset UTF8 = Charset.forName("UTF-8");
+    private static final CharsetDecoder UTF8_DECODER = UTF8.newDecoder();
+    
+    static {
+        UTF8_DECODER.onMalformedInput(CodingErrorAction.REPLACE);
+        UTF8_DECODER.onUnmappableCharacter(CodingErrorAction.REPLACE);
+        UTF8_DECODER.replaceWith("\ufffd");
+    }
+    
+    /**
+     * Skips possible BOM (ef bb bf) in the beginning of the stream.
+     */
+    private static BufferedInputStream skipBOM(BufferedInputStream stream) throws IOException {
+        stream.mark(4);
+        if(stream.read() == 0xef)
+            if(stream.read() == 0xbb)
+                if(stream.read() == 0xbf)
+                    return stream;
+        stream.reset();
+        return stream;
+    }
+
+    public LaxUTF8Reader(BufferedInputStream stream) throws IOException {
+        super(skipBOM(stream), UTF8_DECODER);
+    }
+    
+    public LaxUTF8Reader(String fileName) throws IOException {
+        this(new BufferedInputStream(new FileInputStream(fileName)));
+    }
+}