You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-dev@xmlgraphics.apache.org by hi...@apache.org on 2002/06/12 14:42:35 UTC

cvs commit: xml-batik/sources/org/apache/batik/xml XMLScanner.java

hillion     2002/06/12 05:42:35

  Modified:    sources/org/apache/batik/xml XMLScanner.java
  Log:
  Fixed bug 9804.
  
  Revision  Changes    Path
  1.2       +2 -2      xml-batik/sources/org/apache/batik/xml/XMLScanner.java
  
  Index: XMLScanner.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/xml/XMLScanner.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XMLScanner.java	19 Apr 2002 16:04:06 -0000	1.1
  +++ XMLScanner.java	12 Jun 2002 12:42:35 -0000	1.2
  @@ -923,7 +923,7 @@
   	}
   	
   	while (current != -1) {
  -	    while (current != ']') {
  +	    while (current != ']' && current != -1) {
   		nextChar();
   	    }
   	    if (current != -1) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: batik-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: batik-dev-help@xml.apache.org