Index: /trunk/java-utils/src/main/java/de/ugoe/cs/util/FileTools.java
===================================================================
--- /trunk/java-utils/src/main/java/de/ugoe/cs/util/FileTools.java	(revision 1239)
+++ /trunk/java-utils/src/main/java/de/ugoe/cs/util/FileTools.java	(revision 1240)
@@ -33,70 +33,70 @@
 public class FileTools {
 
-	/**
-	 * <p>
-	 * Private constructor to prevent initializing of the class.
-	 * </p>
-	 */
-	private FileTools() {
+    /**
+     * <p>
+     * Private constructor to prevent initializing of the class.
+     * </p>
+     */
+    private FileTools() {
 
-	}
+    }
 
-	/**
-	 * <p>
-	 * Returns an array of the lines contained in a file. The line separator is
-	 * {@link StringTools#ENDLINE}.
-	 * </p>
-	 * 
-	 * @param filename
-	 *            name of the file
-	 * @return string array, where each line contains a file
-	 * @throws IOException
-	 *             see {@link FileReader#read(char[])},
-	 *             {@link FileReader#close()}
-	 * @throws FileNotFoundException
-	 *             see {@link FileReader#FileReader(File)}
-	 */
-	public static String[] getLinesFromFile(String filename)
-			throws IOException, FileNotFoundException {
-		boolean carriageReturn = true;
-		if( StringTools.ENDLINE.equals("\n") ) {
-			carriageReturn = false;
-		}
-		return getLinesFromFile(filename, carriageReturn);
-	}
+    /**
+     * <p>
+     * Returns an array of the lines contained in a file. The line separator is
+     * {@link StringTools#ENDLINE}.
+     * </p>
+     * 
+     * @param filename
+     *            name of the file
+     * @return string array, where each line contains a file
+     * @throws IOException
+     *             see {@link FileReader#read(char[])}, {@link FileReader#close()}
+     * @throws FileNotFoundException
+     *             see {@link FileReader#FileReader(File)}
+     */
+    public static String[] getLinesFromFile(String filename) throws IOException,
+        FileNotFoundException
+    {
+        boolean carriageReturn = true;
+        if (StringTools.ENDLINE.equals("\n")) {
+            carriageReturn = false;
+        }
+        return getLinesFromFile(filename, carriageReturn);
+    }
 
-	/**
-	 * <p>
-	 * Returns an array of the lines contained in a file.
-	 * </p>
-	 * 
-	 * @param filename
-	 *            name of the file
-	 * @param carriageReturn
-	 *            if true, "\r\n", if false "\n" is used as line separator
-	 * @return string array, where each line contains a file
-	 * @throws IOException
-	 *             see {@link FileReader#read(char[])},
-	 *             {@link FileReader#close()}
-	 * @throws FileNotFoundException
-	 *             see {@link FileReader#FileReader(File)}
-	 */
-	public static String[] getLinesFromFile(String filename,
-			boolean carriageReturn) throws IOException, FileNotFoundException {
-		File f = new File(filename);
-		FileInputStream fis = new FileInputStream(f);
-		InputStreamReader reader = new InputStreamReader(fis,
-				Charset.defaultCharset());
-		char[] buffer = new char[(int) f.length()];
-		reader.read(buffer);
-		reader.close();
-		String splitString;
-		if (carriageReturn) {
-			splitString = "\r\n";
-		} else {
-			splitString = "\n";
-		}
-		return (new String(buffer)).split(splitString);
-	}
+    /**
+     * <p>
+     * Returns an array of the lines contained in a file.
+     * </p>
+     * 
+     * @param filename
+     *            name of the file
+     * @param carriageReturn
+     *            if true, "\r\n", if false "\n" is used as line separator
+     * @return string array, where each line contains a file
+     * @throws IOException
+     *             see {@link FileReader#read(char[])}, {@link FileReader#close()}
+     * @throws FileNotFoundException
+     *             see {@link FileReader#FileReader(File)}
+     */
+    public static String[] getLinesFromFile(String filename, boolean carriageReturn)
+        throws IOException, FileNotFoundException
+    {
+        File f = new File(filename);
+        FileInputStream fis = new FileInputStream(f);
+        InputStreamReader reader = new InputStreamReader(fis, Charset.defaultCharset());
+        char[] buffer = new char[(int) f.length()];
+        reader.read(buffer);
+        reader.close();
+        String splitString;
+        if (carriageReturn) {
+            splitString = "\r\n";
+        }
+        else {
+            splitString = "\n";
+        }
+        return (new String(buffer)).split(splitString);
+    }
 
 }
