Skip to content

Commit

Permalink
#135: trustAllHosts(boolean) should be public API
Browse files Browse the repository at this point in the history
  • Loading branch information
bbottema committed Apr 7, 2018
1 parent 7f2eaa1 commit c37a46d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public T trustingSSLHosts(String... sslHostsToTrust) {
*
* @see #trustingSSLHosts(String...)
*/
private T trustingAllHosts(@Nonnull final Boolean trustAllHosts) {
public T trustingAllHosts(@Nonnull final Boolean trustAllHosts) {
this.trustAllSSLHost = trustAllHosts;
return (T) this;
}
Expand Down

0 comments on commit c37a46d

Please sign in to comment.