Skip to content

Commit

Permalink
Upgrade to Java 21 (#7294)
Browse files Browse the repository at this point in the history
* Bump Java version from 17 to 21
* Change `@Retryable` to not use deprecated `value` attribute
* Fix compiler warnings
* Remove unused Query DSL dependency
* Suppress compiler warnings due to plugin generated code

---------

Signed-off-by: Steven Sheehy <[email protected]>
Signed-off-by: IvanKavaldzhiev <[email protected]>
  • Loading branch information
steven-sheehy authored and IvanKavaldzhiev committed Jan 8, 2024
1 parent 5e7f5ba commit 9a1f3ca
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -710,10 +710,10 @@ public void getCustomFeesForFungibleTokenRoyaltyFee() throws Exception {
assertThat(royaltyFee.get(5).toString().toLowerCase())
.isEqualTo("0x"
+ tokenClient
.getSdkClient()
.getExpandedOperatorAccountId()
.getAccountId()
.toSolidityAddress());
.getSdkClient()
.getExpandedOperatorAccountId()
.getAccountId()
.toSolidityAddress());
}

// ETHCALL-034
Expand All @@ -732,10 +732,10 @@ public void getCustomFeesForFungibleTokenRoyaltyFeeAndFallback() throws Exceptio
assertThat(royaltyFee.get(5).toString().toLowerCase())
.hasToString("0x"
+ tokenClient
.getSdkClient()
.getExpandedOperatorAccountId()
.getAccountId()
.toSolidityAddress());
.getSdkClient()
.getExpandedOperatorAccountId()
.getAccountId()
.toSolidityAddress());
}

private void tokenKeyCheck(final Tuple result) {
Expand Down

0 comments on commit 9a1f3ca

Please sign in to comment.