(String hostname, SSLSession session)
| 390 | HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() { |
| 391 | |
| 392 | public boolean verify(String hostname, SSLSession session) { |
| 393 | return true; |
| 394 | } |
| 395 | }); |
| 396 | SSLContext context = SSLContext.getInstance("TLS"); |
| 397 | context.init(null, new X509TrustManager[] { new X509TrustManager() { |
nothing calls this directly
no outgoing calls
no test coverage detected