mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 21:41:14 +08:00
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:
parent
92002f50bd
commit
ab6036c8fb
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user