This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[4.1] Patch: FYI: xml fixlet
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 06 Feb 2006 14:59:15 -0700
- Subject: [4.1] Patch: FYI: xml fixlet
- Reply-to: tromey at redhat dot com
I'm checking this in on the 4.1 branch.
This is a little XML parser fixlet.
Tom
Index: ChangeLog.gcj
from Anthony Green <green@redhat.com>
* gnu/xml/aelfred2/XmlParser.java: Add missing break;.
Index: gnu/xml/aelfred2/XmlParser.java
===================================================================
--- gnu/xml/aelfred2/XmlParser.java (revision 110177)
+++ gnu/xml/aelfred2/XmlParser.java (working copy)
@@ -1,5 +1,5 @@
/* XmlParser.java --
- Copyright (C) 1999,2000,2001 Free Software Foundation, Inc.
+ Copyright (C) 1999,2000,2001, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -2185,6 +2185,7 @@
{
nest++;
}
+ break;
case ']':
if (tryRead("]>"))
{