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 2013/09/16 12:42:44 UTC

[4/5] git commit: Fixed CS

Fixed CS


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a971b79d
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a971b79d
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a971b79d

Branch: refs/heads/camel-2.12.x
Commit: a971b79dac4f0f0e9d091d6dc8758c4eb784a884
Parents: 8ad3d36
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Sep 16 12:41:44 2013 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Sep 16 12:42:06 2013 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/camel/component/bean/BeanInfo.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a971b79d/camel-core/src/main/java/org/apache/camel/component/bean/BeanInfo.java
----------------------------------------------------------------------
diff --git a/camel-core/src/main/java/org/apache/camel/component/bean/BeanInfo.java b/camel-core/src/main/java/org/apache/camel/component/bean/BeanInfo.java
index 98d0c8b..19d7ad3 100644
--- a/camel-core/src/main/java/org/apache/camel/component/bean/BeanInfo.java
+++ b/camel-core/src/main/java/org/apache/camel/component/bean/BeanInfo.java
@@ -627,7 +627,7 @@ public class BeanInfo {
     private MethodInfo getSingleCovariantMethod(Collection<MethodInfo> candidates) {
         // if all the candidates are actually covariant, it doesn't matter which one we call
         MethodInfo firstCandidate = candidates.iterator().next();
-        for (MethodInfo candidate: candidates) {
+        for (MethodInfo candidate : candidates) {
             if (!firstCandidate.isCovariantWith(candidate)) {
                 return null;
             }