Commit 96859aa4 by Tom Tromey Committed by Tom Tromey

Permissions.java (perms): Now package-private.

	* java/security/Permissions.java (perms): Now package-private.
	* java/security/UnresolvedPermission.java (permissions): Now
	package-private.

From-SVN: r90202
parent d28f3078
2004-11-06 Tom Tromey <tromey@redhat.com>
* java/security/Permissions.java (perms): Now package-private.
* java/security/UnresolvedPermission.java (permissions): Now
package-private.
2004-11-06 Tom Tromey <tromey@redhat.com>
* java/io/FilePermission.java: Reindented.
2004-11-06 Tom Tromey <tromey@redhat.com>
......
......@@ -72,12 +72,13 @@ public final class Permissions extends PermissionCollection
*/
private PermissionCollection allPermission;
// Package-private to avoid a trampoline.
/**
* This is the <code>Hashtable</code> that contains our collections.
*
* @serial maps Class to PermissionCollection
*/
private final Hashtable perms = new Hashtable();
final Hashtable perms = new Hashtable();
/**
* This method initializes a new instance of <code>Permissions</code>.
......
......@@ -216,13 +216,14 @@ class UnresolvedPermissionCollection extends PermissionCollection
*/
private static final long serialVersionUID = -7176153071733132400L;
// Package-private to avoid a trampoline.
/**
* Hashtable where we store permissions.
*
* @serial map of typename to a Vector of permissions (you'd think Sun
* would document this better!)
*/
private final Hashtable permissions = new Hashtable();
final Hashtable permissions = new Hashtable();
/**
* Add a permission.
......
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