Skip to content

Commit 312aaa6

Browse files
committed
style: fix Spotless indent in MirrorNodeClientImpl
`queryTransactionsByAccountAndType` had a 6-space continuation indent that failed `spotless:check` in CI. Bring it to 8 spaces to match the project format. Signed-off-by: Alejandro <26930485+alejandroGM0@users.noreply.github.com>
1 parent e97ecb0 commit 312aaa6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hiero-enterprise-spring/src/main/java/org/hiero/spring/implementation/MirrorNodeClientImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public Page<TransactionInfo> queryTransactionsByAccount(@NonNull final AccountId
107107
@NonNull AccountId accountId, @NonNull TransactionType type) throws HieroException {
108108
Objects.requireNonNull(accountId, "accountId must not be null");
109109
final String path =
110-
TRANSACTIONS_PATH + "?account.id=" + accountId + "&transactiontype=" + type.getType();
110+
TRANSACTIONS_PATH + "?account.id=" + accountId + "&transactiontype=" + type.getType();
111111
final Function<JsonNode, List<TransactionInfo>> dataExtractionFunction =
112112
n -> jsonConverter.toTransactionInfos(n);
113113
return new RestBasedPage<>(

0 commit comments

Comments
 (0)