Skip to content

Commit 7ce4a07

Browse files
author
Nathan Guggenberger
committed
Fix formatting
1 parent be775cf commit 7ce4a07

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/main/java/io/api/etherscan/core/impl/AccountApiProvider.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,19 +230,21 @@ public List<TxToken> txsToken(final String address, final long startBlock, final
230230
return getRequestUsingOffset(urlParams, TxTokenResponseTO.class);
231231
}
232232

233-
233+
@NotNull
234234
@Override
235-
public @NotNull List<TxToken> txsNftToken(String address) throws ApiException {
235+
public List<TxToken> txsNftToken(String address) throws ApiException {
236236
return txsNftToken(address, MIN_START_BLOCK);
237237
}
238238

239+
@NotNull
239240
@Override
240-
public @NotNull List<TxToken> txsNftToken(String address, long startBlock) throws ApiException {
241+
public List<TxToken> txsNftToken(String address, long startBlock) throws ApiException {
241242
return txsNftToken(address, startBlock, MAX_END_BLOCK);
242243
}
243244

245+
@NotNull
244246
@Override
245-
public @NotNull List<TxToken> txsNftToken(String address, long startBlock, long endBlock) throws ApiException {
247+
public List<TxToken> txsNftToken(String address, long startBlock, long endBlock) throws ApiException {
246248
BasicUtils.validateAddress(address);
247249
final BlockParam blocks = BasicUtils.compensateBlocks(startBlock, endBlock);
248250

0 commit comments

Comments
 (0)