You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/04/13 04:56:38 UTC

[camel-spring-boot] branch main updated: Change Configuration class import to annotation class (#521)

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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new ed2aa9ae001 Change Configuration class import to annotation class (#521)
ed2aa9ae001 is described below

commit ed2aa9ae001453535ab3eb3eb800d9c0b076e1bf
Author: Tom Cunningham <tc...@redhat.com>
AuthorDate: Wed Apr 13 00:56:35 2022 -0400

    Change Configuration class import to annotation class (#521)
---
 .../idempotent/jdbc/JdbcOrphanLockAwareIdempotentRepositoryTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components-starter/camel-sql-starter/src/test/java/org/apache/camel/processor/idempotent/jdbc/JdbcOrphanLockAwareIdempotentRepositoryTest.java b/components-starter/camel-sql-starter/src/test/java/org/apache/camel/processor/idempotent/jdbc/JdbcOrphanLockAwareIdempotentRepositoryTest.java
index 710bf11ae13..63ab69d6929 100644
--- a/components-starter/camel-sql-starter/src/test/java/org/apache/camel/processor/idempotent/jdbc/JdbcOrphanLockAwareIdempotentRepositoryTest.java
+++ b/components-starter/camel-sql-starter/src/test/java/org/apache/camel/processor/idempotent/jdbc/JdbcOrphanLockAwareIdempotentRepositoryTest.java
@@ -16,7 +16,6 @@
  */
 package org.apache.camel.processor.idempotent.jdbc;
 
-import org.apache.camel.Configuration;
 import org.apache.camel.component.sql.BaseSql;
 import org.apache.camel.impl.DefaultCamelContext;
 import org.apache.camel.processor.idempotent.jdbc.JdbcMessageIdRepository;
@@ -27,6 +26,7 @@ import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.TestInstance;
 import org.junit.jupiter.api.TestInstance.Lifecycle;
 import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
 import org.springframework.jdbc.core.JdbcTemplate;
 import org.springframework.jdbc.datasource.embedded.EmbeddedDatabase;
 import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder;