diff --git a/xrpl4j-core/src/main/java/org/xrpl/xrpl4j/model/transactions/SetFee.java b/xrpl4j-core/src/main/java/org/xrpl/xrpl4j/model/transactions/SetFee.java index 0c86c14d7..8b7ee2412 100644 --- a/xrpl4j-core/src/main/java/org/xrpl/xrpl4j/model/transactions/SetFee.java +++ b/xrpl4j-core/src/main/java/org/xrpl/xrpl4j/model/transactions/SetFee.java @@ -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. @@ -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.) - *

- * 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()}. + * + *

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. */ @@ -94,9 +92,9 @@ default String baseFee() { /** * The base reserve, in drops. - *

- * 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()}}. + * + *

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}. */ @@ -120,9 +118,10 @@ default UnsignedInteger reserveBase() { /** * The incremental reserve, in drops. - *

- * 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()}. + * + *

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}. */