Skip to content

Commit

Permalink
Polish 'Use isXxx() instead of getXxx() for boolean properties'
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Jan 24, 2025
1 parent 964abef commit 5850306
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -575,17 +575,6 @@ public void setValidateServerCertificate(boolean validateServerCertificate) {
this.validateServerCertificate = validateServerCertificate;
}

/**
* Returns verifyHostname.
* @return verifyHostname
* @deprecated since 3.5.0 for removal in 3.7.0 in favor of
* {@link #isVerifyHostname()}
*/
@Deprecated(since = "3.5.0", forRemoval = true)
public boolean getVerifyHostname() {
return this.verifyHostname;
}

public boolean isVerifyHostname() {
return this.verifyHostname;
}
Expand Down

0 comments on commit 5850306

Please sign in to comment.