< prev index next >

src/java.base/share/classes/javax/net/ssl/SSLServerSocket.java

Print this page

        

@@ -238,11 +238,11 @@
      *          named by the parameter is not supported, or when
      *          the parameter is null.
      * @see #getSupportedCipherSuites()
      * @see #getEnabledCipherSuites()
      */
-    public abstract void setEnabledCipherSuites(String suites []);
+    public abstract void setEnabledCipherSuites(String[] suites);
 
 
     /**
      * Returns the names of the cipher suites which could be enabled for use
      * on an SSL connection.

@@ -309,11 +309,11 @@
      *            the protocols named by the parameter is not supported or
      *            when the protocols parameter is null.
      * @see #getEnabledProtocols()
      * @see #getSupportedProtocols()
      */
-    public abstract void setEnabledProtocols(String protocols[]);
+    public abstract void setEnabledProtocols(String[] protocols);
 
 
     /**
      * Controls whether <code>accept</code>ed server-mode
      * <code>SSLSockets</code> will be initially configured to
< prev index next >