summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrasadNaidu <RV00493633@techmahindra.com>2018-02-22 15:19:31 +0530
committerJames Forsyth <jf2512@att.com>2018-02-22 13:43:19 +0000
commitf39ba0cfa00665ae13bf086bce6606cde2b85e33 (patch)
tree04200618d56540950dfffc5a4cf80285e7cbf3a5
parent6546d3baf48551cad1c8e7ba83b42481dcafb92f (diff)
Reorder the modifiers
Reorder the modifiers to comply with the Java Language Specification AbstractLoggingChampGraph.java:L114 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: Ie69b744af3e3947a3f856695bf09b213e32a2adb Issue-ID: AAI-783 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 a0fb837..43a7fca 100644
--- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
+++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
@@ -111,7 +111,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph {
/** Configuration property for setting the maximum amount of time to wait for a batch of
* outgoing messages to fill up before sending the batch. */
public static final String PARAM_EVENT_STREAM_BATCH_TIMEOUT = "champ.event.stream.batch-timeout";
- public final static Integer DEFAULT_EVENT_STREAM_BATCH_TIMEOUT_MS = 500;
+ public static final 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 static final Integer DEFAULT_EVENT_STREAM_PUBLISHER_POOL_SIZE = 100;