Skip to content

Commit

Permalink
[#1290] Resolve API breakage after making RequestParameters#encode final
Browse files Browse the repository at this point in the history
Make it non-final again. See #1289 for further steps
  • Loading branch information
ruspl-afed committed Feb 20, 2024
1 parent fbd5b60 commit 75fd00e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private List<NamedData> generalParameters() throws LicensingException {
new ServerAuthenticationExpression(encode(access.getServer().getAuthentication().getExpression())));
}

protected final String encode(String value) throws LicensingException {
protected String encode(String value) throws LicensingException {
try {
return URLEncoder.encode(value, "UTF-8"); //$NON-NLS-1$
} catch (UnsupportedEncodingException e) {
Expand Down

0 comments on commit 75fd00e

Please sign in to comment.