]> gitweb.fperrin.net Git - DictionaryPC.git/blobdiff - src/com/hughes/util/FileUtil.java
Consistent EOL format.
[DictionaryPC.git] / src / com / hughes / util / FileUtil.java
index d3024da18947d68cecf06930a3acaf7ae81efda1..d280cc1a232e8e2798b5e57e6e25ec0d59689b73 100644 (file)
@@ -1,67 +1,67 @@
-// Copyright 2011 Google Inc. All Rights Reserved.\r
-//\r
-// Licensed under the Apache License, Version 2.0 (the "License");\r
-// you may not use this file except in compliance with the License.\r
-// You may obtain a copy of the License at\r
-//\r
-//     http://www.apache.org/licenses/LICENSE-2.0\r
-//\r
-// Unless required by applicable law or agreed to in writing, software\r
-// distributed under the License is distributed on an "AS IS" BASIS,\r
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-// See the License for the specific language governing permissions and\r
-// limitations under the License.\r
-\r
-package com.hughes.util;\r
-\r
-import java.io.BufferedReader;\r
-import java.io.File;\r
-import java.io.FileInputStream;\r
-import java.io.FileOutputStream;\r
-import java.io.IOException;\r
-import java.io.InputStreamReader;\r
-import java.io.PrintStream;\r
-import java.io.RandomAccessFile;\r
-import java.util.ArrayList;\r
-import java.util.List;\r
-\r
-@SuppressWarnings("WeakerAccess")\r
-public final class FileUtil {\r
-    public static String readLine(final RandomAccessFile file, final long startPos) throws IOException {\r
-        file.seek(startPos);\r
-        return file.readLine();\r
-    }\r
-\r
-    public static List<String> readLines(final File file) throws IOException {\r
-        final List<String> result = new ArrayList<>();\r
-        try (BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(file)))) {\r
-            String line;\r
-            while ((line = in.readLine()) != null) {\r
-                result.add(line);\r
-            }\r
-        }\r
-        return result;\r
-    }\r
-\r
-    public static String readToString(final File file) throws IOException {\r
-        StringBuilder result = new StringBuilder();\r
-        try (BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(file)))) {\r
-            String line;\r
-            while ((line = in.readLine()) != null) {\r
-                result.append(line).append("\n");\r
-            }\r
-        }\r
-        return result.toString();\r
-    }\r
-\r
-    public static void writeStringToUTF8File(final String string, final File file) {\r
-        throw new IllegalStateException();\r
-    }\r
-\r
-    public static void printString(final File file, final String s) throws IOException {\r
-        final PrintStream out = new PrintStream(new FileOutputStream(file));\r
-        out.print(s);\r
-        out.close();\r
-    }\r
-\r
-}\r
+// Copyright 2011 Google Inc. All Rights Reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.hughes.util;
+
+import java.io.BufferedReader;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import java.io.PrintStream;
+import java.io.RandomAccessFile;
+import java.util.ArrayList;
+import java.util.List;
+
+@SuppressWarnings("WeakerAccess")
+public final class FileUtil {
+    public static String readLine(final RandomAccessFile file, final long startPos) throws IOException {
+        file.seek(startPos);
+        return file.readLine();
+    }
+
+    public static List<String> readLines(final File file) throws IOException {
+        final List<String> result = new ArrayList<>();
+        try (BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(file)))) {
+            String line;
+            while ((line = in.readLine()) != null) {
+                result.add(line);
+            }
+        }
+        return result;
+    }
+
+    public static String readToString(final File file) throws IOException {
+        StringBuilder result = new StringBuilder();
+        try (BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(file)))) {
+            String line;
+            while ((line = in.readLine()) != null) {
+                result.append(line).append("\n");
+            }
+        }
+        return result.toString();
+    }
+
+    public static void writeStringToUTF8File(final String string, final File file) {
+        throw new IllegalStateException();
+    }
+
+    public static void printString(final File file, final String s) throws IOException {
+        final PrintStream out = new PrintStream(new FileOutputStream(file));
+        out.print(s);
+        out.close();
+    }
+
+}