You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ha...@apache.org on 2014/02/14 23:57:49 UTC

git commit: CS fix in preparation of release

Repository: camel
Updated Branches:
  refs/heads/camel-2.12.x 8e3fcabd6 -> 0ec404984


CS fix in preparation of release


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

Branch: refs/heads/camel-2.12.x
Commit: 0ec404984eb5945a978b842b8c5eab4884060554
Parents: 8e3fcab
Author: Hadrian Zbarcea <hz...@gmail.com>
Authored: Fri Feb 14 17:56:50 2014 -0500
Committer: Hadrian Zbarcea <hz...@gmail.com>
Committed: Fri Feb 14 17:56:50 2014 -0500

----------------------------------------------------------------------
 .../java/org/apache/camel/component/cxf/jaxrs/CxfRsEndpoint.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/0ec40498/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/jaxrs/CxfRsEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/jaxrs/CxfRsEndpoint.java b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/jaxrs/CxfRsEndpoint.java
index 9cb0b1d..242c027 100644
--- a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/jaxrs/CxfRsEndpoint.java
+++ b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/jaxrs/CxfRsEndpoint.java
@@ -198,7 +198,7 @@ public class CxfRsEndpoint extends DefaultEndpoint implements HeaderFilterStrate
         }
         // setup the features
         if (!getFeatures().isEmpty()) {
-            for (Feature feature: getFeatures()) {
+            for (Feature feature : getFeatures()) {
                 sfb.getFeatures().add(feature);
             }
         }