diff options
| author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-16 20:53:16 +0000 |
|---|---|---|
| committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-16 20:53:16 +0000 |
| commit | 92d5e982131371875c25ef48d518107c1beb502f (patch) | |
| tree | f5560d34bf9505efd1d147a614984a444e25fba7 /libjava | |
| parent | bb06f0f58205cd2a40a101e5a154d0c664adcf91 (diff) | |
| download | ppe42-gcc-92d5e982131371875c25ef48d518107c1beb502f.tar.gz ppe42-gcc-92d5e982131371875c25ef48d518107c1beb502f.zip | |
* gnu/xml/pipeline/ValidationConsumer.java (Recognizer): Make
'ANY' package-private.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98236 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava')
| -rw-r--r-- | libjava/ChangeLog | 5 | ||||
| -rw-r--r-- | libjava/gnu/xml/pipeline/ValidationConsumer.java | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index aff276fc86b..706fed7f997 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -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. diff --git a/libjava/gnu/xml/pipeline/ValidationConsumer.java b/libjava/gnu/xml/pipeline/ValidationConsumer.java index 719270e0754..9053b484c02 100644 --- a/libjava/gnu/xml/pipeline/ValidationConsumer.java +++ b/libjava/gnu/xml/pipeline/ValidationConsumer.java @@ -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, |

