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>
* 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
against count.
......
......@@ -540,6 +540,7 @@ label = Name:\\u0020</pre>
case '=':
case ':':
buffer.append('\\').append(c);
break;
default:
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