(String hostname, SSLSession session)
| 58 | httpsConn.setHostnameVerifier(new HostnameVerifier() { |
| 59 | |
| 60 | @Override |
| 61 | public boolean verify(String hostname, SSLSession session) { |
| 62 | return true; |
| 63 | } |
| 64 | }); |
| 65 | conn = httpsConn; |
| 66 | } |
nothing calls this directly
no outgoing calls
no test coverage detected