Skip to content

Commit

Permalink
Small Improvements 4
Browse files Browse the repository at this point in the history
  • Loading branch information
sathishk committed Feb 8, 2024
1 parent f89894f commit 0f080d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@
<sonar.version>3.7.0.1746</sonar.version>
<surefire.version>3.2.5</surefire.version>
<jacoco.version>0.8.11</jacoco.version>
<maven.checkstyle.version>3.1.2</maven.checkstyle.version>
<maven.checkstyle.version>3.3.1</maven.checkstyle.version>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
<maven-javadoc.version>3.3.1</maven-javadoc.version>
<maven-gpg.version>3.0.1</maven-gpg.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<checkstyle.version>9.0.1</checkstyle.version>
<checkstyle.version>10.13.0</checkstyle.version>
<jvm.options>
-javaagent:${user.home}/.m2/repository/io/github/stephankoelle/jamm/${jamm.version}/jamm-${jamm.version}.jar
--add-opens java.base/java.util=ALL-UNNAMED --add-opens jakarta.validation/jakarta.validation=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/techatpark/sjson/core/Json.java
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ private List<Object> getArray() throws IOException {
eoa = endOfArray();
}
nextClean();
return Collections.unmodifiableList(list);
return list;
}


Expand Down

0 comments on commit 0f080d3

Please sign in to comment.