diff options
author | Tom Tromey <tromey@redhat.com> | 2007-03-28 19:03:54 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2007-03-28 19:03:54 +0000 |
commit | 954b1e97f255c216a04818307679fc18dd2ceb83 (patch) | |
tree | 05fb7ffc951de0ac2ddfc7899027846052c4373e /external | |
parent | 1c1e85379a4f5167d6bfd5625d795a4d3a1c690d (diff) | |
download | classpath-954b1e97f255c216a04818307679fc18dd2ceb83.tar.gz |
PR classpath/31303:
* external/sax/org/xml/sax/helpers/XMLReaderFactory.java
(createXMLReader): Code in Classpath default.
Diffstat (limited to 'external')
-rw-r--r-- | external/sax/org/xml/sax/helpers/XMLReaderFactory.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/external/sax/org/xml/sax/helpers/XMLReaderFactory.java b/external/sax/org/xml/sax/helpers/XMLReaderFactory.java index 0516ff24e..304f750b9 100644 --- a/external/sax/org/xml/sax/helpers/XMLReaderFactory.java +++ b/external/sax/org/xml/sax/helpers/XMLReaderFactory.java @@ -137,6 +137,11 @@ final public class XMLReaderFactory if (className == null) { // BEGIN DISTRIBUTION-SPECIFIC + // CLASSPATH LOCAL: have to code in the backup. + // Among other things, see PR 31303, and this thread: + // http://gcc.gnu.org/ml/java-patches/2007-q1/msg00661.html + className = "gnu.xml.stream.SAXParser"; + // EXAMPLE: // className = "com.example.sax.XmlReader"; // or a $JAVA_HOME/jre/lib/*properties setting... |