I\'m using HttpClient latest version (4.x). And right now I\'m trying to do A GET Request. I just posting a Get request.
This is my Code;
public clas
Here is the simplest way to suppress the warning in v4.5.x (4.5.6 right now) :
HttpClientBuilder clientBuilder = HttpClientBuilder.create(); clientBuilder.disableCookieManagement(); HttpClient httpClient = clientBuilder.build();