diff options
| author | Tom Tromey <tromey@redhat.com> | 2005-04-16 20:53:16 +0000 |
|---|---|---|
| committer | Tom Tromey <tromey@gcc.gnu.org> | 2005-04-16 20:53:16 +0000 |
| commit | 2b2e3f4e94fbd46dbe4fbe201cc054259598cfe9 (patch) | |
| tree | f5560d34bf9505efd1d147a614984a444e25fba7 /libjava/gnu | |
| parent | 6feaa084f88c96b72f840c2e9ed280fc742b1f98 (diff) | |
| download | gcc-2b2e3f4e94fbd46dbe4fbe201cc054259598cfe9.zip gcc-2b2e3f4e94fbd46dbe4fbe201cc054259598cfe9.tar.gz gcc-2b2e3f4e94fbd46dbe4fbe201cc054259598cfe9.tar.bz2 | |
ValidationConsumer.java (Recognizer): Make 'ANY' package-private.
* gnu/xml/pipeline/ValidationConsumer.java (Recognizer): Make
'ANY' package-private.
From-SVN: r98236
Diffstat (limited to 'libjava/gnu')
| -rw-r--r-- | libjava/gnu/xml/pipeline/ValidationConsumer.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libjava/gnu/xml/pipeline/ValidationConsumer.java b/libjava/gnu/xml/pipeline/ValidationConsumer.java index 719270e..9053b48 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, |
