diff options
author | PrasadNaidu <RV00493633@techmahindra.com> | 2018-02-14 11:42:27 +0530 |
---|---|---|
committer | PrasadNaidu <RV00493633@techmahindra.com> | 2018-02-14 11:42:51 +0530 |
commit | 5d47c0322fb590101bb76565a66266bbce0d4e57 (patch) | |
tree | 71390fefb6684a578ac6ec3fae191b37f171f7bc | |
parent | 65a3f36aa550f5b21874f688762dffa0d4753479 (diff) |
Reorder the modifiers
Reorder the modifiers to comply with the Java Language Specification
AbstractLoggingChampGraph.java:L98
Sonar Link : https://sonar.onap.org/project/issues?assignees=PrasadNaidu&id=org.onap.aai%3Achamp&resolved=false
Location : src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
Change-Id: Ie2c5195b47231a031851b7e0a819f69725d627fe
Issue-ID: AAI-774
Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
-rw-r--r-- | src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java index fe4a1ec..d169d72 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -95,7 +95,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph { /** Configuration property for setting the comma-separated list of servers to use for * communicating with the event bus. */ - public final static String PARAM_EVENT_STREAM_HOSTS = "champ.event.stream.hosts"; + public static final String PARAM_EVENT_STREAM_HOSTS = "champ.event.stream.hosts"; /** Configuration property for setting the number of events that we will try to 'batch' * up before sending them to the event bus. */ |