Commit d2427b1d by Mark Wielaard Committed by Mark Wielaard

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
parent de2baf30
2002-12-30 Mark Wielaard <mark@klomp.org> 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 * java/lang/StringBuffer.java (getChars): Remove wrong dstOffset check
against count. against count.
......
...@@ -540,6 +540,7 @@ label = Name:\\u0020</pre> ...@@ -540,6 +540,7 @@ label = Name:\\u0020</pre>
case '=': case '=':
case ':': case ':':
buffer.append('\\').append(c); buffer.append('\\').append(c);
break;
default: default:
if (c < ' ' || c > '~') if (c < ' ' || c > '~')
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment