Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
salander85 committed Oct 23, 2023
1 parent c3c3f33 commit 7639767
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
import io.vrap.rmf.base.client.ApiHttpMethod;
import io.vrap.rmf.base.client.ApiHttpResponse;
import io.vrap.rmf.base.client.error.BadGatewayException;
import io.vrap.rmf.base.client.utils.json.JsonUtils;
import java.io.IOException;
import java.io.InputStream;
import io.vrap.rmf.base.client.utils.json.JsonUtils;
import java.nio.charset.StandardCharsets;
import java.time.Clock;
import java.time.ZonedDateTime;
Expand Down Expand Up @@ -250,7 +250,8 @@ public static void stubClientsCustomObjectService(

public static ProjectApiRoot withTestClient(
final String projectKey,
final TriFunction<String, ApiHttpMethod, String, CompletableFuture<ApiHttpResponse<byte[]>>> fn) {
final TriFunction<String, ApiHttpMethod, String, CompletableFuture<ApiHttpResponse<byte[]>>>
fn) {
return ApiRootBuilder.of(
request -> {
final String uri = request.getUri() != null ? request.getUri().toString() : "";
Expand Down

0 comments on commit 7639767

Please sign in to comment.