(String hostname, SSLSession session)
| 291 | HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() { |
| 292 | |
| 293 | public boolean verify(String hostname, SSLSession session) { |
| 294 | return true; |
| 295 | } |
| 296 | }); |
| 297 | SSLContext context = SSLContext.getInstance("TLS"); |
| 298 | context.init(null, new X509TrustManager[] { new X509TrustManager() { |
nothing calls this directly
no outgoing calls
no test coverage detected