Skip to content

Commit

Permalink
Upgrade javassist to 3.30.2-GA, re #37
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Feb 27, 2024
1 parent 6e94595 commit d2a63ca
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.29.2-GA</version>
<version>3.30.2-GA</version>
<scope>test</scope>
</dependency>

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/libj/math/BigIntValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ public static int[] trim(final int[] val, int len) {
if (val.length <= len)
return val;

System.err.println("trim");
final int[] res = new int[len];
System.arraycopy(val, 0, res, 0, len);
return res;
Expand Down

0 comments on commit d2a63ca

Please sign in to comment.