Commit e94f5bac by Tom Tromey Committed by Tom Tromey

SocketPermission.java (hostport, actions): Now private.

	* java/net/SocketPermission.java (hostport, actions): Now
	private.

From-SVN: r46266
parent 7c4f13fd
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
......
/* 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 ...@@ -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
......
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