Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
nkramer44 committed Oct 18, 2024
1 parent 58a2099 commit 50330ac
Showing 1 changed file with 10 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@

import java.util.Optional;

import javax.annotation.Nullable;

/**
* A {@link SetFee} pseudo-transaction marks a change in transaction cost or reserve requirements as a result of Fee
* Voting.
Expand All @@ -57,9 +55,9 @@ static ImmutableSetFee.Builder builder() {
/**
* The charge, in drops of XRP, for the reference transaction, as hex. (This is the transaction cost before scaling
* for load.)
* <p>
* This method only exists for historical purposes. When deserialized from a {@link SetFee} transaction from ledgers
* prior to the {@code XRPFees} amendment, this field will still be set based on {@link #baseFeeDrops()}.
*
* <p>This method only exists for historical purposes. When deserialized from a {@link SetFee} transaction from
* ledgers prior to the {@code XRPFees} amendment, this field will still be set based on {@link #baseFeeDrops()}.
*
* @return A hex {@link String} baseFee value.
*/
Expand Down Expand Up @@ -94,9 +92,9 @@ default String baseFee() {

/**
* The base reserve, in drops.
* <p>
* This method only exists for historical purposes. When deserialized from a {@link SetFee} transaction from ledgers
* prior to the {@code XRPFees} amendment, this field will still be set based on {@link #reserveBaseDrops()}}.
*
* <p>This method only exists for historical purposes. When deserialized from a {@link SetFee} transaction from
* ledgers prior to the {@code XRPFees} amendment, this field will still be set based on {@link #reserveBaseDrops()}}.
*
* @return An {@link UnsignedInteger} base reserve value in {@link org.xrpl.xrpl4j.model.client.fees.FeeDrops}.
*/
Expand All @@ -120,9 +118,10 @@ default UnsignedInteger reserveBase() {

/**
* The incremental reserve, in drops.
* <p>
* This method only exists for historical purposes. When deserialized from a {@link SetFee} transaction from ledgers
* prior to the {@code XRPFees} amendment, this field will still be set based on {@link #reserveIncrementDrops()}.
*
* <p>This method only exists for historical purposes. When deserialized from a {@link SetFee} transaction from
* ledgers prior to the {@code XRPFees} amendment, this field will still be set based on
* {@link #reserveIncrementDrops()}.
*
* @return An {@link UnsignedInteger} incremental reserve in {@link org.xrpl.xrpl4j.model.client.fees.FeeDrops}.
*/
Expand Down

0 comments on commit 50330ac

Please sign in to comment.