Reorder the modifiers 21/32221/2
authorPrasadNaidu <RV00493633@techmahindra.com>
Tue, 20 Feb 2018 09:52:17 +0000 (15:22 +0530)
committerJames Forsyth <jf2512@att.com>
Tue, 20 Feb 2018 20:27:25 +0000 (20:27 +0000)
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>
src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java

index cb2f5a7..a69eaaa 100644 (file)
@@ -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;