You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2016/03/20 12:35:47 UTC

camel git commit: Fix Checkstyle issue: Add missing access modifier

Repository: camel
Updated Branches:
  refs/heads/master 9bee8ddc4 -> 05622ef94


Fix Checkstyle issue: Add missing access modifier

Signed-off-by: Gregor Zurowski <gr...@zurowski.org>

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

Branch: refs/heads/master
Commit: 05622ef94aac8c13ed09fef8526d1a5473499902
Parents: 9bee8dd
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Sun Mar 20 12:33:27 2016 +0100
Committer: Gregor Zurowski <gr...@zurowski.org>
Committed: Sun Mar 20 12:35:00 2016 +0100

----------------------------------------------------------------------
 .../java/org/apache/camel/component/undertow/UndertowEndpoint.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/05622ef9/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
index d8b5a01..8a19679 100644
--- a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
+++ b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java
@@ -81,7 +81,7 @@ public class UndertowEndpoint extends DefaultEndpoint implements HeaderFilterStr
     private Map<String, Object> options;
     @UriParam(label = "consumer",
             description = "Specifies whether to enable HTTP OPTIONS for this Servlet consumer. By default OPTIONS is turned off.")
-    boolean optionsEnabled;
+    private boolean optionsEnabled;
 
     public UndertowEndpoint(String uri, UndertowComponent component) throws URISyntaxException {
         super(uri, component);