Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
nkramer44 committed Nov 27, 2023
1 parent 79cdb1a commit aae80d2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ static ImmutableAttestationClaim.Builder builder() {
* @return An {@link XChainClaimId}.
*/
@JsonProperty("XChainClaimID")
@SuppressWarnings("MethodName")
XChainClaimId xChainClaimId();

}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ static ImmutableAttestationCreateAccount.Builder builder() {
* @return An {@link XChainCount}.
*/
@JsonProperty("XChainAccountCreateCount")
@SuppressWarnings("MethodName")
XChainCount xChainAccountCreateCount();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ static MetaLedgerEntryType of(String value) {
.build();
}

/**
* Get the {@link MetaLedgerObject} concrete type associated with this {@link MetaLedgerEntryType}.
*
* @return A {@link Class} of {@link MetaLedgerObject}.
*/
@Value.Auxiliary
default Class<? extends MetaLedgerObject> ledgerObjectType() {
switch (this.value()) {
Expand Down
5 changes: 5 additions & 0 deletions xrpl4j-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
<artifactId>jackson-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
Expand Down

0 comments on commit aae80d2

Please sign in to comment.