This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 2920329 Fixed CS for camel-groovy
2920329 is described below
commit 29203291086a1dac4bc5d88d19de7c8c2e411ef6
Author: Andrea Cosentino <[email protected]>
AuthorDate: Wed Apr 24 17:19:49 2019 +0200
Fixed CS for camel-groovy
---
.../src/main/java/org/apache/camel/language/groovy/Groovy.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/components/camel-groovy/src/main/java/org/apache/camel/language/groovy/Groovy.java
b/components/camel-groovy/src/main/java/org/apache/camel/language/groovy/Groovy.java
index 67cd11c..b66ae8b 100644
---
a/components/camel-groovy/src/main/java/org/apache/camel/language/groovy/Groovy.java
+++
b/components/camel-groovy/src/main/java/org/apache/camel/language/groovy/Groovy.java
@@ -16,14 +16,14 @@
*/
package org.apache.camel.language.groovy;
-import org.apache.camel.support.language.LanguageAnnotation;
-
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
+import org.apache.camel.support.language.LanguageAnnotation;
+
/**
* Used to inject a groovy expression into a field, property, method or
parameter when using
* <a href="http://camel.apache.org/bean-integration.html">Bean
Integration</a>.