We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bed17d commit 1377affCopy full SHA for 1377aff
APIJSONORM/src/main/java/apijson/orm/AbstractParser.java
@@ -14,7 +14,6 @@
14
import java.net.InetAddress;
15
import java.net.URLDecoder;
16
import java.net.URLEncoder;
17
-import java.nio.charset.StandardCharsets;
18
import java.sql.Connection;
19
import java.sql.SQLException;
20
import java.sql.Savepoint;
@@ -1955,7 +1954,7 @@ public Object getValueByPath(String valuePath) {
1955
1954
*/
1956
public static String getDecodedKey(String key) {
1957
try {
1958
- return URLDecoder.decode(key, StandardCharsets.UTF_8);
+ return URLDecoder.decode(key, StringUtil.UTF_8);
1959
} catch (Throwable e) {
1960
return key;
1961
}
0 commit comments