Skip to content

Commit 0504c81

Browse files
committed
Add missing @OverRide annotation to tfInnerBatchTxn() in Vault flags (DGE-7974)
1 parent d44e8f9 commit 0504c81

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

xrpl4j-core/src/main/java/org/xrpl/xrpl4j/model/flags/VaultDepositFlags.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ public boolean tfVaultDonate() {
9494
*
9595
* @return {@code true} if {@code tfInnerBatchTxn} is set, otherwise {@code false}.
9696
*/
97+
@Override
9798
public boolean tfInnerBatchTxn() {
9899
return this.isSet(VaultDepositFlags.INNER_BATCH_TXN);
99100
}

xrpl4j-core/src/main/java/org/xrpl/xrpl4j/model/flags/VaultSetFlags.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ public boolean tfVaultDepositUnblock() {
115115
*
116116
* @return {@code true} if {@code tfInnerBatchTxn} is set, otherwise {@code false}.
117117
*/
118+
@Override
118119
public boolean tfInnerBatchTxn() {
119120
return this.isSet(VaultSetFlags.INNER_BATCH_TXN);
120121
}

0 commit comments

Comments
 (0)