summaryrefslogtreecommitdiff
path: root/javax/imageio
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2004-11-06 23:31:50 +0000
committerTom Tromey <tromey@redhat.com>2004-11-06 23:31:50 +0000
commita456e614bfa7a0599d866810d61c941503b0b2fc (patch)
tree9e201abcf68234f8e3ad7809e2a44d0cfc878575 /javax/imageio
parent9c9cd305e3afc976f712ffd818b06037a9e65378 (diff)
downloadclasspath-a456e614bfa7a0599d866810d61c941503b0b2fc.tar.gz
* javax/naming/directory/BasicAttributes.java (attributes): Now
package-private. * javax/imageio/spi/ServiceRegistry.java (categories): Now package-private.
Diffstat (limited to 'javax/imageio')
-rw-r--r--javax/imageio/spi/ServiceRegistry.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/javax/imageio/spi/ServiceRegistry.java b/javax/imageio/spi/ServiceRegistry.java
index 566d50f73..3d7134ed5 100644
--- a/javax/imageio/spi/ServiceRegistry.java
+++ b/javax/imageio/spi/ServiceRegistry.java
@@ -62,6 +62,7 @@ import java.util.Set;
*/
public class ServiceRegistry
{
+ // Package-private to avoid a trampoline.
/**
* The service categories of this registry.
*
@@ -73,7 +74,7 @@ public class ServiceRegistry
*
* @see #providers
*/
- private final Class[] categories;
+ final Class[] categories;
/**