aboutsummaryrefslogtreecommitdiff
path: root/libjava/external/sax/org/xml/sax/helpers/NamespaceSupport.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/external/sax/org/xml/sax/helpers/NamespaceSupport.java')
-rw-r--r--libjava/external/sax/org/xml/sax/helpers/NamespaceSupport.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/libjava/external/sax/org/xml/sax/helpers/NamespaceSupport.java b/libjava/external/sax/org/xml/sax/helpers/NamespaceSupport.java
index 01e11faf83e..5eb9e7c1ff5 100644
--- a/libjava/external/sax/org/xml/sax/helpers/NamespaceSupport.java
+++ b/libjava/external/sax/org/xml/sax/helpers/NamespaceSupport.java
@@ -2,7 +2,7 @@
// http://www.saxproject.org
// Written by David Megginson
// This class is in the Public Domain. NO WARRANTY!
-// $Id: NamespaceSupport.java,v 1.1 2004/12/23 22:38:42 mark Exp $
+// $Id: NamespaceSupport.java,v 1.2 2005/03/24 00:04:07 tromey Exp $
package org.xml.sax.helpers;
@@ -113,7 +113,8 @@ public class NamespaceSupport
/**
* An empty enumeration.
*/
- private final static Enumeration EMPTY_ENUMERATION =
+ // GCJ LOCAL: work around gcj bug by making this package-private
+ final static Enumeration EMPTY_ENUMERATION =
new Vector().elements();