aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrasadNaidu <RV00493633@techmahindra.com>2018-02-20 12:38:27 +0530
committerPrasadNaidu <RV00493633@techmahindra.com>2018-02-20 12:38:51 +0530
commit04e3919f7b938372b84256c2d8e10754294b403a (patch)
tree833b96e92a9a4c12a137a5d8d0b5c79d539fd463
parent7213f8de6357e972ea27d8ed8d490dc63b117879 (diff)
Reorder the modifiers
Reorder the modifiers to comply with the Java Language Specification AbstractLoggingChampGraph.java:L108 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: Id9b452fd59208629d35310df8a09faf8c7d987e3 Issue-ID: AAI-782 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 004e098..593d884 100644
--- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
+++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
@@ -105,7 +105,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 final static String PARAM_EVENT_STREAM_BATCH_TIMEOUT = "champ.event.stream.batch-timeout";
+ 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 final static String PARAM_EVENT_STREAM_PUBLISHER_POOL_SIZE = "champ.event.stream.publisher-pool-size";