Skip to content

Commit

Permalink
Update core/src/main/java/org/apache/struts2/url/StrutsUrlDecoder.java
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Peters <[email protected]>
  • Loading branch information
mygreen and sepe81 authored Oct 24, 2023
1 parent afe31cc commit faa98d7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ private byte convertHexDigit(byte b) {
}

private Charset getCharset(String encoding) throws UnsupportedEncodingException {
for (Charset charset : AVAILAVLE_CHARSETS) {
for (Charset charset : AVAILABLE_CHARSETS) {
if (encoding.equalsIgnoreCase(charset.name())) {
return charset;
}
Expand Down

0 comments on commit faa98d7

Please sign in to comment.