SocketPermission.java (hostport, actions): Now private.
* java/net/SocketPermission.java (hostport, actions): Now private. From-SVN: r46266
This commit is contained in:
parent
7c4f13fd46
commit
e94f5bac70
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2001-10-15 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* java/net/SocketPermission.java (hostport, actions): Now
|
||||||
|
private.
|
||||||
|
|
||||||
2001-10-14 Mark Wielaard <mark@klomp.org>
|
2001-10-14 Mark Wielaard <mark@klomp.org>
|
||||||
|
|
||||||
* java/lang/Double.java: Partial merge with Classpath
|
* java/lang/Double.java: Partial merge with Classpath
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* SocketPermission.java -- Class modeling permissions for socket operations
|
/* SocketPermission.java -- Class modeling permissions for socket operations
|
||||||
Copyright (C) 1998, 2000 Free Software Foundation, Inc.
|
Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GNU Classpath.
|
This file is part of GNU Classpath.
|
||||||
|
|
||||||
|
@ -95,12 +95,12 @@ public final class SocketPermission extends Permission
|
||||||
/**
|
/**
|
||||||
* A hostname/port combination as described above
|
* A hostname/port combination as described above
|
||||||
*/
|
*/
|
||||||
protected transient String hostport;
|
private transient String hostport;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A comma separated list of actions for which we have permission
|
* A comma separated list of actions for which we have permission
|
||||||
*/
|
*/
|
||||||
protected String actions;
|
private String actions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes a new instance of <code>SocketPermission</code> with the
|
* Initializes a new instance of <code>SocketPermission</code> with the
|
||||||
|
|
Loading…
Add table
Reference in a new issue