Skip to content

Commit 56d037a

Browse files
author
T. Ismael Verdugo
committed
fix: method annotation
1 parent 1ffe7ff commit 56d037a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/com/cryptomarket/sdk/rest/CryptomarketRestClientImpl.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@
5656
import com.cryptomarket.sdk.requests.OrderListRequest;
5757
import com.cryptomarket.sdk.requests.WithdrawRequest;
5858

59-
import kotlin.OverloadResolutionByLambdaReturnType;
60-
6159
public class CryptomarketRestClientImpl implements CryptomarketRestClient {
6260
CloseableHttpClient httpClient;
6361
Adapter adapter = new Adapter();
@@ -938,7 +936,7 @@ public List<Fee> getBulkEstimateWithdrawalFees(List<FeeRequest> feeRequests) thr
938936
return adapter.listFromJson(jsonResponse, Fee.class);
939937
}
940938

941-
@OverloadResolutionByLambdaReturnType
939+
@Override
942940
public String getFeesHash() throws CryptomarketSDKException {
943941
String jsonResponse = httpClient.get("wallet/crypto/fee/withdraw/hash", null);
944942
return adapter.objectFromJsonValue(jsonResponse, "hash", String.class);

0 commit comments

Comments
 (0)