You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/04/26 05:45:24 UTC

[camel] branch main updated: Regen for commit 898c8529ffd6560e36e21e35f556ddc23937432c

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 893a6558024 Regen for commit 898c8529ffd6560e36e21e35f556ddc23937432c
893a6558024 is described below

commit 893a65580243fda14d1a3fe034abb0c9241ef719
Author: davsclaus <da...@users.noreply.github.com>
AuthorDate: Wed Apr 26 05:37:37 2023 +0000

    Regen for commit 898c8529ffd6560e36e21e35f556ddc23937432c
    
    Signed-off-by: GitHub <no...@github.com>
---
 .../camel/component/azure/cosmosdb/client/CosmosDbClientFactory.java   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/components/camel-azure/camel-azure-cosmosdb/src/main/java/org/apache/camel/component/azure/cosmosdb/client/CosmosDbClientFactory.java b/components/camel-azure/camel-azure-cosmosdb/src/main/java/org/apache/camel/component/azure/cosmosdb/client/CosmosDbClientFactory.java
index 16f1d02a64a..7a1b116eb5f 100644
--- a/components/camel-azure/camel-azure-cosmosdb/src/main/java/org/apache/camel/component/azure/cosmosdb/client/CosmosDbClientFactory.java
+++ b/components/camel-azure/camel-azure-cosmosdb/src/main/java/org/apache/camel/component/azure/cosmosdb/client/CosmosDbClientFactory.java
@@ -16,7 +16,6 @@
  */
 package org.apache.camel.component.azure.cosmosdb.client;
 
-import java.util.stream.Collectors;
 import java.util.stream.Stream;
 
 import com.azure.cosmos.CosmosAsyncClient;
@@ -53,7 +52,7 @@ public final class CosmosDbClientFactory {
         if (ObjectHelper.isNotEmpty(configuration.getPreferredRegions())) {
             builder.preferredRegions(Stream.of(configuration.getPreferredRegions().split(","))
                     .map(String::trim)
-                            .toList());
+                    .toList());
         }
 
         return builder;