Skip to content
Snippets Groups Projects
Commit ece824f3 authored by felmer's avatar felmer
Browse files

LMS-733 bug fixed in Windows newline sequence

SVN: 10049
parent b7190ad7
No related branches found
No related tags found
No related merge requests found
...@@ -268,7 +268,7 @@ public class OSUtilities ...@@ -268,7 +268,7 @@ public class OSUtilities
case UNIX: case UNIX:
return "\n"; return "\n";
case WINDOWS: case WINDOWS:
return "\t\n"; return "\r\n";
default: default:
throw new IllegalStateException("unknown os " + osKind); throw new IllegalStateException("unknown os " + osKind);
} }
......
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