summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--java/net/ServerSocket.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/java/net/ServerSocket.java b/java/net/ServerSocket.java
index 43487de38..0b4a40cc6 100644
--- a/java/net/ServerSocket.java
+++ b/java/net/ServerSocket.java
@@ -50,7 +50,7 @@ public class ServerSocket
/**
* This is the user defined SocketImplFactory, if one is supplied
*/
-protected static SocketImplFactory factory;
+private static SocketImplFactory factory;
/*************************************************************************/
@@ -62,7 +62,7 @@ protected static SocketImplFactory factory;
* This is the SocketImp object to which most instance methods in this
* class are redirected
*/
-protected SocketImpl impl;
+private SocketImpl impl;
/*************************************************************************/
@@ -116,10 +116,8 @@ setSocketFactory(SocketImplFactory factory) throws IOException
/*************************************************************************/
/**
- * This protected constructor is used by subclasses of ServerSocket. It
- * simply load the implementation and returns
+ * This constructor simply load the implementation and returns.
*/
-protected
ServerSocket()
{
if (factory != null)