This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[4.1] Patch: FYI: xml fixlet


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("]>"))
                   {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]