You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/04/02 06:57:33 UTC

[camel] branch main updated: (chores) camel-mongodb: fixed imports

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

orpiske 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 2b09a84f42b (chores) camel-mongodb: fixed imports
2b09a84f42b is described below

commit 2b09a84f42b025cccecb599f9307adf0a24b22a9
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Sun Apr 2 08:57:08 2023 +0200

    (chores) camel-mongodb: fixed imports
---
 .../java/org/apache/camel/component/mongodb/MongoDbComponent.java    | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/components/camel-mongodb/src/main/java/org/apache/camel/component/mongodb/MongoDbComponent.java b/components/camel-mongodb/src/main/java/org/apache/camel/component/mongodb/MongoDbComponent.java
index bb9fd93a5b6..35db6337129 100644
--- a/components/camel-mongodb/src/main/java/org/apache/camel/component/mongodb/MongoDbComponent.java
+++ b/components/camel-mongodb/src/main/java/org/apache/camel/component/mongodb/MongoDbComponent.java
@@ -16,7 +16,10 @@
  */
 package org.apache.camel.component.mongodb;
 
-import java.util.*;
+import java.util.Arrays;
+import java.util.EnumSet;
+import java.util.Map;
+import java.util.Set;
 
 import com.mongodb.client.MongoClient;
 import org.apache.camel.CamelContext;