Skip to content

Commit 5db9eb3

Browse files
committed
Reduce diff
1 parent aa91bb4 commit 5db9eb3

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • datamodel/openapi/openapi-core-apache/src/main/java/com/sap/cloud/sdk/services/openapi/apache/apiclient

datamodel/openapi/openapi-core-apache/src/main/java/com/sap/cloud/sdk/services/openapi/apache/apiclient/ApiClient.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,6 @@ private ContentType getContentType( @Nonnull final String headerValue )
395395
*/
396396
@Nonnull
397397
private String buildUrl(
398-
@Nonnull final String basePath,
399398
@Nonnull final String path,
400399
@Nullable final List<Pair> queryParams,
401400
@Nullable final List<Pair> collectionQueryParams,
@@ -564,7 +563,7 @@ private ClassicRequestBuilder buildClassicRequest(
564563
throw new OpenApiRequestException("Cannot have body and form params");
565564
}
566565

567-
final String url = buildUrl(basePath, path, queryParams, collectionQueryParams, urlQueryDeepObject);
566+
final String url = buildUrl(path, queryParams, collectionQueryParams, urlQueryDeepObject);
568567

569568
final ClassicRequestBuilder builder = ClassicRequestBuilder.create(method);
570569
builder.setUri(url);

0 commit comments

Comments
 (0)