/[fenfire]/fenfire/org/fenfire/impl/SimpleNodeContent.java
ViewVC logotype

Diff of /fenfire/org/fenfire/impl/SimpleNodeContent.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.11 by tjl, Wed Jun 11 17:00:24 2003 UTC revision 1.12 by mudyc, Fri Jun 27 11:45:21 2003 UTC
# Line 25  SimpleNodeContent.java Line 25  SimpleNodeContent.java
25   */   */
26    
27  package org.fenfire.impl;  package org.fenfire.impl;
28  import java.io.StringBufferInputStream;  import java.io.ByteArrayInputStream;
29    
30  import org.nongnu.alph.Enfilade1D;  import org.nongnu.alph.Enfilade1D;
31  import org.nongnu.alph.Alph;  import org.nongnu.alph.Alph;
# Line 131  public static final String rcsid = "$Id$ Line 131  public static final String rcsid = "$Id$
131          try {          try {
132              String xml = l.getRawXMLString();              String xml = l.getRawXMLString();
133              if(dbg) pa("Parse: "+saxParser+" "+xml+" "+spanReader);              if(dbg) pa("Parse: "+saxParser+" "+xml+" "+spanReader);
134              saxParser.parse(new StringBufferInputStream(xml),              byte[] bytes = xml.getBytes("UTF-8");
135                saxParser.parse(new ByteArrayInputStream(bytes),
136                              spanReader);                              spanReader);
137    
138          } catch (Exception e) {          } catch (Exception e) {

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26