Reorder the modifiers 19/32219/1
authorPrasadNaidu <RV00493633@techmahindra.com>
Tue, 20 Feb 2018 09:42:52 +0000 (15:12 +0530)
committerPrasadNaidu <RV00493633@techmahindra.com>
Tue, 20 Feb 2018 09:43:15 +0000 (15:13 +0530)
Reorder the modifiers to comply with the Java Language Specification
AbstractLoggingChampGraph.java:L112

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: Ifd9e5b595f8cf2d4a259cc6e96e4f0ee1b8ef208
Issue-ID: AAI-785
Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java

index 004e098..30fd414 100644 (file)
@@ -109,7 +109,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph {
   public final static Integer DEFAULT_EVENT_STREAM_BATCH_TIMEOUT_MS = 500; 
   
   public final static String  PARAM_EVENT_STREAM_PUBLISHER_POOL_SIZE = "champ.event.stream.publisher-pool-size";
-  public final static Integer DEFAULT_EVENT_STREAM_PUBLISHER_POOL_SIZE = 100;
+  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";