summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrasadNaidu <RV00493633@techmahindra.com>2018-02-20 15:22:17 +0530
committerJames Forsyth <jf2512@att.com>2018-02-20 20:27:25 +0000
commitcd528b8230d27f5d1b44153b10c1e7c7729ecdc4 (patch)
tree4b74ff6b254c9be7b30680086eb17dff5ed782b4
parent66b7cc5833dd439dc185366b58f56a76997538ae (diff)
Reorder the modifiers
Reorder the modifiers to comply with the Java Language Specification AbstractLoggingChampGraph.java:L115 Sonar link : https://sonar.onap.org/project/issues?assignees=PrasadNaidu&id=org.onap.aai%3Achamp&open=AV7ygfKAlaLbmlVXUW5d Location : src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java Change-Id: I1bd5d950d7fd4a682b0e55fd20ba89d002a8a28b Issue-ID: AAI-786 Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
-rw-r--r--src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java2
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 cb2f5a7..a69eaaa 100644
--- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
+++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
@@ -117,7 +117,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph {
public static final Integer DEFAULT_EVENT_STREAM_PUBLISHER_POOL_SIZE = 100;
/** The event stream topic that we will publish Champ events to. */
- public final static String EVENT_TOPIC = "champRawEvents";
+ public static final String EVENT_TOPIC = "champRawEvents";
/** Number of events to 'batch up' before actually publishing them to the event bus. */
private Integer eventStreamBatchSize;