Skip to content

Commit

Permalink
[TNT-49982] upgrade unirest-java (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvava authored Jul 11, 2024
1 parent b8b7ebb commit 6f8badf
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ dependencies {
implementation "com.fasterxml.jackson.core:jackson-annotations:2.11.3"
implementation "com.fasterxml.jackson.core:jackson-core:2.11.3"
implementation "com.fasterxml.jackson.core:jackson-databind:2.11.3"
implementation "com.konghq:unirest-java:3.11.02"
implementation "com.konghq:unirest-java:3.14.5"
implementation "io.github.jamsesso:json-logic-java:1.0.5"
implementation "com.google.guava:guava:16.0.1"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,11 @@ public <E> E mapError(Class<? extends E> errorClass) {
public Cookies getCookies() {
return null;
}

@Override
public HttpRequestSummary getRequestSummary() {
return null;
}
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import java.io.InputStreamReader;
import kong.unirest.Config;
import kong.unirest.Headers;
import kong.unirest.HttpRequestSummary;
import kong.unirest.HttpResponseSummary;
import kong.unirest.RawResponse;

Expand Down Expand Up @@ -84,4 +85,9 @@ public Config getConfig() {
public HttpResponseSummary toSummary() {
return null;
}

@Override
public HttpRequestSummary getRequestSummary() {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,11 @@ public Config getConfig() {
public HttpResponseSummary toSummary() {
return null;
}

@Override
public HttpRequestSummary getRequestSummary() {
return null;
}
};
}

Expand Down

0 comments on commit 6f8badf

Please sign in to comment.