Skip to content

Commit

Permalink
Merge branch 'base'
Browse files Browse the repository at this point in the history
  • Loading branch information
sink772 committed Oct 2, 2024
2 parents dcd7cb5 + 89ed85a commit 2528502
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion javaee/rt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'java-library'
dependencies {
implementation project(':api')

implementation 'org.bouncycastle:bcprov-jdk18on:1.77'
implementation 'org.bouncycastle:bcprov-jdk18on:1.78.1'
implementation 'org.msgpack:msgpack-core:0.8.17'
implementation 'org.slf4j:slf4j-api:1.7.26'
implementation 'org.ow2.asm:asm:7.3.1'
Expand Down
2 changes: 1 addition & 1 deletion javaee/rt/src/java/s/java/math/BigInteger.java
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ private boolean isValidRange(java.math.BigInteger u) {
}

private void verifyBitLength(int length) {
if (length > 512) {
if (Math.abs(length) > 512) {
throw new ArithmeticException("Out of the supported range");
}
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/java/library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ java {
sourceSets.main.java.srcDirs = ["src/main/java"]

ext {
bouncycastleVersion = '1.77'
bouncycastleVersion = '1.78.1'
jacksonVersion = '2.13.4.2'
okhttpVersion = '4.10.0'
}
Expand Down

0 comments on commit 2528502

Please sign in to comment.