Skip to content

Commit 7790bb7

Browse files
committed
[3.0.0-SNAPSHOT]
Cleanup
1 parent 7ea0526 commit 7790bb7

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
java: [ '11', '17' ]
15+
java: [ '11' ]
1616
name: Master Java ${{ matrix.java }} action
1717

1818
steps:

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
java: [ '11', '17' ]
14+
java: [ '11' ]
1515
name: Pull Request Java ${{ matrix.java }} action
1616

1717
steps:

src/main/java/io/goodforgod/api/etherscan/BasicProvider.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,7 @@ protected <T> T getResponse(String urlParameters, Class<T> tClass) {
129129

130130
protected <T> T getResponse(String urlParameters, Class<T> tClass, int retryCount) {
131131
try {
132-
System.out.println("URL - " + URI.create(baseUrl + module + urlParameters));
133132
EthResponse response = getResponse(urlParameters);
134-
System.out.println("Response - " + new String(response.body(), StandardCharsets.UTF_8));
135133
return convert(response.body(), tClass);
136134
} catch (Exception e) {
137135
if (retryCount < retryCountLimit) {

0 commit comments

Comments
 (0)