Skip to content
Snippets Groups Projects
Commit 0340229e authored by ribeaudc's avatar ribeaudc
Browse files

change:

- Replace '\n' by 'CharUtils.LF'.

SVN: 3104
parent f356310f
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,7 @@ import java.util.regex.Pattern;
import org.apache.commons.io.FilenameUtils;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.CharUtils;
import org.apache.commons.lang.StringUtils;
import ch.systemsx.cisd.common.exceptions.CheckedExceptionTunnel;
......@@ -269,7 +270,7 @@ public final class FileUtilities
String line;
while ((line = reader.readLine()) != null)
{
builder.append(line).append('\n');
builder.append(line).append(CharUtils.LF);
}
return builder.toString();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment