Kong / unirest-java

Unirest in Java: Simplified, lightweight HTTP client library.
http://kong.github.io/unirest-java/
MIT License
2.59k stars 593 forks source link

Fix useSystemProperties #395

Closed arbu closed 3 years ago

arbu commented 3 years ago

Previously the value set with Config.useSystemProperties(boolean) was overriden. This pull request removes the call to HttpClientBuilder.useSystemProperties() from the ApacheClient constructor, so it is only called when the appropriate config is set. Also set the default value of useSystemProperties to true in order to not break behavior from previous versions.

CLAassistant commented 3 years ago

CLA assistant check
All committers have signed the CLA.

ryber commented 3 years ago

thanks @arbu