We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In many places, the Java WSRequest and WSResponse still use methods which return null:
public interface StandaloneWSRequest { String getUsername(); String getPassword(); WSAuthScheme getScheme(); WSSignatureCalculator getCalculator(); Duration getRequestTimeoutDuration(); boolean getFollowRedirects(); String getContentType(); }
And they should return Optional<String> etc where appropriate.
Optional<String>
The text was updated successfully, but these errors were encountered:
Addressed by #129
Sorry, something went wrong.
hi, is this one up for picking or is it already fixed by #129 ?
Hey, @dmitraver,
it was already addressed by #129.
Best.
No branches or pull requests
In many places, the Java WSRequest and WSResponse still use methods which return null:
And they should return
Optional<String>
etc where appropriate.The text was updated successfully, but these errors were encountered: