Added parsing of new line characters in properties files.

This commit is contained in:
Dain 2008-01-23 16:39:45 -07:00
parent 6bca3a8665
commit 6926ca6778

View File

@ -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);