ValidationConsumer.java (Recognizer): Make 'ANY' package-private.
authorTom Tromey <tromey@redhat.com>
Sat, 16 Apr 2005 20:53:16 +0000 (20:53 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Sat, 16 Apr 2005 20:53:16 +0000 (20:53 +0000)
* gnu/xml/pipeline/ValidationConsumer.java (Recognizer): Make
'ANY' package-private.

From-SVN: r98236

libjava/ChangeLog
libjava/gnu/xml/pipeline/ValidationConsumer.java

index aff276f..706fed7 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-16  Tom Tromey  <tromey@redhat.com>
+
+       * gnu/xml/pipeline/ValidationConsumer.java (Recognizer): Make
+       'ANY' package-private.
+
 2005-04-15  Tom Tromey  <tromey@redhat.com>
 
        * Makefile.in: Rebuilt.
index 719270e..9053b48 100644 (file)
@@ -1,5 +1,5 @@
 /* ValidationConsumer.java -- 
-   Copyright (C) 1999,2000,2001 Free Software Foundation, Inc.
+   Copyright (C) 1999,2000,2001, 2005 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -1323,7 +1323,8 @@ public final class ValidationConsumer extends EventFilter
     // Content model validation
     //
 
-    static private final Recognizer    ANY = new Recognizer (null);
+    // GCJ LOCAL: package private to work around gcj bug.
+    static final Recognizer    ANY = new Recognizer (null);
 
 
     // Base class defines the calls used to validate content,