This repository was archived by the owner on Oct 23, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed
src/main/java/com/alibaba/fastjson/util Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 22<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
33 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
44 <modelVersion >4.0.0</modelVersion >
5- <groupId >com.alibaba</groupId >
5+ <parent >
6+ <groupId >org.sonatype.oss</groupId >
7+ <artifactId >oss-parent</artifactId >
8+ <version >9</version >
9+ </parent >
10+
11+ <groupId >com.taobao.arthas</groupId >
612 <artifactId >fastjson</artifactId >
7- <version >1.2.80</version >
13+ <version >1.2.80-fix </version >
814
915 <packaging >jar</packaging >
1016 <name >fastjson</name >
1521
1622 <properties >
1723 <junit .version>4.13.1</junit .version>
18- <gpg .skip>true </gpg .skip>
19- <javadoc .skip>true </javadoc .skip>
24+ <gpg .skip>false </gpg .skip>
25+ <javadoc .skip>false </javadoc .skip>
2026 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
2127 <jdk .version>1.5</jdk .version>
2228 </properties >
Original file line number Diff line number Diff line change 3838import java .lang .reflect .*;
3939import java .math .BigDecimal ;
4040import java .math .BigInteger ;
41- import java .security .AccessControlException ;
4241import java .sql .Clob ;
4342import java .text .ParseException ;
4443import java .text .SimpleDateFormat ;
@@ -2553,7 +2552,7 @@ static void setAccessible(AccessibleObject obj) {
25532552 }
25542553 try {
25552554 obj .setAccessible (true );
2556- } catch (AccessControlException error ) {
2555+ } catch (Throwable error ) {
25572556 setAccessibleEnable = false ;
25582557 }
25592558 }
You can’t perform that action at this time.
0 commit comments