Commit ab6036c8 by Tom Tromey Committed by Tom Tromey

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
parent 92002f50
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
package-private.
* java/nio/charset/CoderResult.java (CoderResult): Now
......
......@@ -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;
/**
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment