Skip to content

Commit 9bf0b40

Browse files
committed
Fix missing final
1 parent 3300a29 commit 9bf0b40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/sap/ai/sdk/core/DestinationResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ HttpDestination getDestination() {
6161

6262
@Nonnull
6363
static HttpDestination fromCustomBaseDestination(@Nonnull final HttpDestination destination) {
64-
var enhancedBaseDestination = addClientTypeHeader(destination);
64+
val enhancedBaseDestination = addClientTypeHeader(destination);
6565
val path = enhancedBaseDestination.getUri().getPath();
6666
if (path == null || path.isEmpty() || path.equals("/")) {
6767
return setBasePath(enhancedBaseDestination);

0 commit comments

Comments
 (0)