Properties (formatForOutput): Don't fall through to default case after escaping character.
* java/util/Properties (formatForOutput): Don't fall through to default case after escaping character. From-SVN: r60618
This commit is contained in:
parent
de2baf30bb
commit
d2427b1d6e
2 changed files with 6 additions and 0 deletions
|
@ -540,6 +540,7 @@ label = Name:\\u0020</pre>
|
|||
case '=':
|
||||
case ':':
|
||||
buffer.append('\\').append(c);
|
||||
break;
|
||||
default:
|
||||
if (c < ' ' || c > '~')
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue