Skip to content

Commit d87ff6d

Browse files
committed
[chore] update gradle for example projects from 6.9.1 to 7.5.1
1 parent 4ab580d commit d87ff6d

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/java/com/devcycle/sdk/server/cloud/api/DVCCloudClient.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,10 @@ private <T> T getResponse(Call<T> call) throws DVCException {
140140
try {
141141
response = call.execute();
142142
} catch (IOException e) {
143-
System.out.println("get exception");
144-
System.out.println(e.toString());
145143
errorResponse.setMessage(e.getMessage());
146144
throw new DVCException(HttpResponseCode.byCode(500), errorResponse);
147145
}
148146

149-
System.out.println(response);
150147
HttpResponseCode httpResponseCode = HttpResponseCode.byCode(response.code());
151148
errorResponse.setMessage("Unknown error");
152149

0 commit comments

Comments
 (0)