Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ protected HttpSender getHttpSender() {
* @return the script wrapper, might be {@code null}.
* @since 2.17.0
*/
protected ScriptWrapper getScript() {
public ScriptWrapper getScript() {
return script;
}

Expand Down Expand Up @@ -152,7 +152,7 @@ protected String[] getCredentialsParamNames() {
*
* @since 2.17.0
*/
protected void setParamValues(Map<String, String> paramValues) {
public void setParamValues(Map<String, String> paramValues) {
this.paramValues = paramValues;
}

Expand All @@ -162,7 +162,7 @@ protected void setParamValues(Map<String, String> paramValues) {
* @return the parameter values, might be {@code null}.
* @since 2.17.0
*/
protected Map<String, String> getParamValues() {
public Map<String, String> getParamValues() {
return paramValues;
}

Expand Down
Loading