You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/11/09 08:24:21 UTC

[camel] branch master updated: CAMEL-15830 - fix order of specifier to respect Java Language Specification

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 a0f584a  CAMEL-15830 - fix order of specifier to respect Java Language Specification
a0f584a is described below

commit a0f584a14d3e9c5af23a063ed9f01a7936a0042f
Author: Aurélien Pupier <ap...@redhat.com>
AuthorDate: Mon Nov 9 09:16:11 2020 +0100

    CAMEL-15830 - fix order of specifier to respect Java Language
    Specification
    
    Signed-off-by: Aurélien Pupier <ap...@redhat.com>
---
 .../resources/archetype-resources/src/main/java/EventBusHelper.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/archetypes/camel-archetype-component/src/main/resources/archetype-resources/src/main/java/EventBusHelper.java b/archetypes/camel-archetype-component/src/main/resources/archetype-resources/src/main/java/EventBusHelper.java
index 3c4c336..a4c0a28 100644
--- a/archetypes/camel-archetype-component/src/main/resources/archetype-resources/src/main/java/EventBusHelper.java
+++ b/archetypes/camel-archetype-component/src/main/resources/archetype-resources/src/main/java/EventBusHelper.java
@@ -30,7 +30,7 @@ public class EventBusHelper {
 
     private static EventBusHelper INSTANCE;
 
-    final private Set<Consumer> subscribers = ConcurrentHashMap.newKeySet();
+    private final Set<Consumer> subscribers = ConcurrentHashMap.newKeySet();
 
     private EventBusHelper() {
     }