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:45 UTC

[5/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/0acff1b0
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/0acff1b0
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/0acff1b0

Branch: refs/heads/camel-2.11.x
Commit: 0acff1b0a2ab0ed2bad66b1e13c58885e8252b14
Parents: aebe527
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:21 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/0acff1b0/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 f288ace..583d6ad 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
@@ -613,7 +613,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;
             }