File tree 5 files changed +9
-14
lines changed
5 files changed +9
-14
lines changed Original file line number Diff line number Diff line change 35
35
# ## VS Code ###
36
36
.vscode /
37
37
APIJSONORM /bin
38
+ * .DS_Store
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.github.Tencent</groupId >
7
7
<artifactId >APIJSON</artifactId >
8
- <version >7.5.0 </version >
8
+ <version >7.5.5 </version >
9
9
<packaging >jar</packaging >
10
10
11
11
<name >APIJSONORM</name >
14
14
<properties >
15
15
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
16
16
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
17
- <java .version>17 </java .version>
17
+ <java .version>1.8 </java .version>
18
18
<maven .compiler.encoding>UTF-8</maven .compiler.encoding>
19
- <maven .compiler.source>17 </maven .compiler.source>
20
- <maven .compiler.target>17 </maven .compiler.target>
19
+ <maven .compiler.source>1.8 </maven .compiler.source>
20
+ <maven .compiler.target>1.8 </maven .compiler.target>
21
21
</properties >
22
22
23
23
<dependencies >
35
35
<artifactId >maven-compiler-plugin</artifactId >
36
36
<version >3.12.1</version >
37
37
<configuration >
38
- <source >17 </source >
39
- <target >17 </target >
38
+ <source >1.8 </source >
39
+ <target >1.8 </target >
40
40
</configuration >
41
41
</plugin >
42
42
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class Log {
14
14
15
15
public static boolean DEBUG = true ;
16
16
17
- public static final String VERSION = "7.5.0 " ;
17
+ public static final String VERSION = "7.5.5 " ;
18
18
public static final String KEY_SYSTEM_INFO_DIVIDER = "\n ---|-----APIJSON SYSTEM INFO-----|---\n " ;
19
19
20
20
public static final String OS_NAME ;
Original file line number Diff line number Diff line change @@ -1981,7 +1981,7 @@ public Object getValueByPath(String valuePath) {
1981
1981
*/
1982
1982
public static String getDecodedKey (String key ) {
1983
1983
try {
1984
- return URLDecoder .decode (key , StandardCharsets .UTF_8 );
1984
+ return URLDecoder .decode (key , StringUtil .UTF_8 );
1985
1985
} catch (Throwable e ) {
1986
1986
return key ;
1987
1987
}
You can’t perform that action at this time.
0 commit comments