parent
89ce838245
commit
a0d76f6ae7
@ -53,7 +53,8 @@ public class PropertiesParserStrategy extends ParserStrategy {
|
|||||||
|
|
||||||
try(StringWriter writer = new StringWriter()) {
|
try(StringWriter writer = new StringWriter()) {
|
||||||
output.store(writer, null);
|
output.store(writer, null);
|
||||||
return writer.toString();
|
// Current implementation only works with \n line separators (IntelliJ Document Formatting)
|
||||||
|
return writer.toString().replaceAll("\r\n", "\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user