(String hostname, SSLSession session)
| 160 | HttpsURLConnection httpsURLConnection = (HttpsURLConnection) OSSObjectURL.openConnection(); |
| 161 | httpsURLConnection.setHostnameVerifier(new HostnameVerifier() { |
| 162 | @Override |
| 163 | public boolean verify(String hostname, SSLSession session) { |
| 164 | return true; |
| 165 | } |
| 166 | }); |
| 167 | connection = httpsURLConnection; |
| 168 | } else { |
nothing calls this directly
no outgoing calls
no test coverage detected