mirror of
https://github.com/corda/corda.git
synced 2025-01-22 12:28:11 +00:00
Added parsing of new line characters in properties files.
This commit is contained in:
parent
6bca3a8665
commit
6926ca6778
@ -111,6 +111,13 @@ public class Properties extends Hashtable {
|
||||
finishLine(map);
|
||||
}
|
||||
break;
|
||||
case 'n':
|
||||
if (escaped) {
|
||||
append('\n');
|
||||
} else {
|
||||
append(c);
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
append(c);
|
||||
|
Loading…
Reference in New Issue
Block a user