Skip to content

Commit

Permalink
merging part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
StigNorland committed Oct 29, 2024
1 parent 4dc1263 commit 7f4cda5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,7 @@ private String uriToIdentifier(String decodedValue) {
return UriWrapper.fromUri(decodedValue).getLastPathElement();
}

private <K extends Enum<K> & ParameterKey<K>> String decodedValue(
QueryKeys<K> parameters, K key) {
private String decodedValue(QueryKeys<K> parameters, K key) {
return key.valueEncoding() == ValueEncoding.NONE
? parameters.get(key).toString()
: decodeUTF(parameters.get(key).toString());
Expand Down

0 comments on commit 7f4cda5

Please sign in to comment.