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
@ -1,3 +1,8 @@
|
||||
2002-12-30 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* java/util/Properties (formatForOutput): Don't fall through to
|
||||
default case after escaping character.
|
||||
|
||||
2002-12-30 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* java/lang/StringBuffer.java (getChars): Remove wrong dstOffset check
|
||||
|
@ -540,6 +540,7 @@ label = Name:\\u0020</pre>
|
||||
case '=':
|
||||
case ':':
|
||||
buffer.append('\\').append(c);
|
||||
break;
|
||||
default:
|
||||
if (c < ' ' || c > '~')
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user