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:
Mark Wielaard 2002-12-30 07:20:04 +00:00 committed by Mark Wielaard
parent de2baf30bb
commit d2427b1d6e
2 changed files with 6 additions and 0 deletions

View File

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

View File

@ -540,6 +540,7 @@ label = Name:\\u0020</pre>
case '=':
case ':':
buffer.append('\\').append(c);
break;
default:
if (c < ' ' || c > '~')
{