BasicAttributes.java (attributes): Now package-private.

* javax/naming/directory/BasicAttributes.java (attributes): Now
	package-private.
	* javax/imageio/spi/ServiceRegistry.java (categories): Now
	package-private.

From-SVN: r90204
This commit is contained in:
Tom Tromey 2004-11-06 23:29:12 +00:00 committed by Tom Tromey
parent 92002f50bd
commit ab6036c8fb
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2004-11-06 Tom Tromey <tromey@redhat.com>
* javax/naming/directory/BasicAttributes.java (attributes): Now
package-private.
* javax/imageio/spi/ServiceRegistry.java (categories): Now
package-private.
2004-11-06 Tom Tromey <tromey@redhat.com>
* java/net/URLClassLoader.java (URLClassLoader): Now

View File

@ -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;
/**

View File

@ -185,7 +185,8 @@ public class BasicAttributes implements Attributes
// This is set by the serialization spec.
private boolean ignoreCase;
private transient Vector attributes;
// Package-private to avoid a trampoline.
transient Vector attributes;
// Used when enumerating.
private class BasicAttributesEnumeration implements NamingEnumeration