diff options
author | PrasadNaidu <RV00493633@techmahindra.com> | 2018-02-20 12:09:43 +0530 |
---|---|---|
committer | PrasadNaidu <RV00493633@techmahindra.com> | 2018-02-20 12:10:04 +0530 |
commit | 737b62ac37a726a4b641718c0365341a3f105197 (patch) | |
tree | f734ffb55c99266e4c43345c6bc017c463a5edb6 /src | |
parent | 7213f8de6357e972ea27d8ed8d490dc63b117879 (diff) |
Reorder the modifiers
Reorder the modifiers to comply with the Java Language Specification
AbstractLoggingChampGraph.java:L103
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: I25f87ac57ca0cd9f5989820dfda368a165c661cb
Issue-ID: AAI-775
Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java | 2 |
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..a7ba770 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -100,7 +100,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 final static String PARAM_EVENT_STREAM_BATCH_SIZE = "champ.event.stream.batch-size"; + public static final String PARAM_EVENT_STREAM_BATCH_SIZE = "champ.event.stream.batch-size"; public final static Integer DEFAULT_EVENT_STREAM_BATCH_SIZE = 1; /** Configuration property for setting the maximum amount of time to wait for a batch of |