File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -874,9 +874,7 @@ public static String[] getCiphers() {
874874 if (cipherSuites == null )
875875 return null ;
876876
877- String [] suiteArray = cipherSuites .split (":" );
878-
879- return suiteArray ;
877+ return cipherSuites .split (":" );
880878 }
881879
882880 /**
@@ -890,9 +888,7 @@ public static String[] getCiphersIana() {
890888 if (cipherSuites == null )
891889 return null ;
892890
893- String [] suiteArray = cipherSuites .split (":" );
894-
895- return suiteArray ;
891+ return cipherSuites .split (":" );
896892 }
897893
898894 /**
@@ -908,9 +904,7 @@ public static String[] getCiphersAvailableIana(TLS_VERSION version) {
908904 if (cipherSuites == null )
909905 return null ;
910906
911- String [] suiteArray = cipherSuites .split (":" );
912-
913- return suiteArray ;
907+ return cipherSuites .split (":" );
914908 }
915909
916910 /* ------------------------- isEnabled methods -------------------------- */
You can’t perform that action at this time.
0 commit comments