Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
nkramer44 committed Nov 29, 2023
1 parent 64010cc commit a69b86d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public DidDataSerializer() {
}

@Override
public void serialize(DidData DidData, JsonGenerator gen, SerializerProvider provider) throws IOException {
gen.writeString(DidData.value());
public void serialize(DidData didData, JsonGenerator gen, SerializerProvider provider) throws IOException {
gen.writeString(didData.value());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ static ImmutableDidDelete.Builder builder() {
}

/**
* Set of {@link TransactionFlags}s for this {@link DidDelete}, which only allows the {@code tfFullyCanonicalSig} flag,
* which is deprecated.
* Set of {@link TransactionFlags}s for this {@link DidDelete}, which only allows the {@code tfFullyCanonicalSig}
* flag, which is deprecated.
*
* <p>The value of the flags can be set manually, but exists mostly for JSON serialization/deserialization only and
* for proper signature computation in rippled.
Expand Down

0 comments on commit a69b86d

Please sign in to comment.