fix for crlf writing

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6477 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 16 years ago
parent 7144d2df6e
commit 5afd9f7a91

@ -596,8 +596,8 @@ public final class FileUtils {
} }
} }
public static final byte LF = 10; public static final char LF = (char) 10;
public static final byte CR = 13; public static final char CR = (char) 13;
/** /**
* Read lines of a text file into a String, optionally ignoring comments. * Read lines of a text file into a String, optionally ignoring comments.

Loading…
Cancel
Save