Skip to content

Commit

Permalink
Made encodeQueryElement public
Browse files Browse the repository at this point in the history
  • Loading branch information
Entea authored May 2, 2017
1 parent 366a03b commit 162d1e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/mikael/urlbuilder/util/Encoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public String encodeQueryParameters(final UrlParameterMultimap queryParametersMu
return sb.toString();
}

protected String encodeQueryElement(final String input) {
public String encodeQueryElement(final String input) {
return urlEncode(input, IS_NOT_PATH, IS_NOT_FRAGMENT, IS_NOT_USERINFO);
}

Expand Down

0 comments on commit 162d1e1

Please sign in to comment.