From 6546d3baf48551cad1c8e7ba83b42481dcafb92f Mon Sep 17 00:00:00 2001 From: PrasadNaidu Date: Thu, 22 Feb 2018 15:06:05 +0530 Subject: [PATCH] Reorder the modifiers Reorder the modifiers to comply with the Java Language Specification AbstractLoggingChampGraph.java:L109 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: I29b98526132420f02de4eae25a4541b04497285f Issue-ID: AAI-776 Signed-off-by: PrasadNaidu --- src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 a69eaaa..a0fb837 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -106,7 +106,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph { /** Configuration property for setting the number of events that we will try to 'batch' * up before sending them to the event bus. */ public static final String PARAM_EVENT_STREAM_BATCH_SIZE = "champ.event.stream.batch-size"; - public final static Integer DEFAULT_EVENT_STREAM_BATCH_SIZE = 1; + public static final Integer DEFAULT_EVENT_STREAM_BATCH_SIZE = 1; /** Configuration property for setting the maximum amount of time to wait for a batch of * outgoing messages to fill up before sending the batch. */ -- 2.16.6