< prev index next >

src/java.base/share/classes/sun/net/www/protocol/https/HttpsClient.java

Print this page

        

*** 137,147 **** private String [] getCipherSuites() { // // If ciphers are assigned, sort them into an array. // ! String ciphers []; String cipherString = GetPropertyAction.privilegedGetProperty("https.cipherSuites"); if (cipherString == null || "".equals(cipherString)) { ciphers = null; --- 137,147 ---- private String [] getCipherSuites() { // // If ciphers are assigned, sort them into an array. // ! String[] ciphers ; String cipherString = GetPropertyAction.privilegedGetProperty("https.cipherSuites"); if (cipherString == null || "".equals(cipherString)) { ciphers = null;
*** 161,171 **** private String [] getProtocols() { // // If protocols are assigned, sort them into an array. // ! String protocols []; String protocolString = GetPropertyAction.privilegedGetProperty("https.protocols"); if (protocolString == null || "".equals(protocolString)) { protocols = null; --- 161,171 ---- private String [] getProtocols() { // // If protocols are assigned, sort them into an array. // ! String[] protocols ; String protocolString = GetPropertyAction.privilegedGetProperty("https.protocols"); if (protocolString == null || "".equals(protocolString)) { protocols = null;
< prev index next >