diff options
author | PrasadNaidu <RV00493633@techmahindra.com> | 2018-02-22 15:27:47 +0530 |
---|---|---|
committer | James Forsyth <jf2512@att.com> | 2018-02-22 14:13:22 +0000 |
commit | 0709d8b5b6319639829d00685e35385133b59f17 (patch) | |
tree | 722389492f2e0c74be5575224e89aa74fdf1db85 /src | |
parent | f39ba0cfa00665ae13bf086bce6606cde2b85e33 (diff) |
Reorder the modifiers
Reorder the modifiers to comply with the Java Language Specification
AbstractLoggingChampGraph.java:L116
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: I27f7fcb6b67863ee38e4627f67051b2ad0584c9f
Issue-ID: AAI-784
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 43a7fca..d2c4716 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -113,7 +113,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph { public static final String PARAM_EVENT_STREAM_BATCH_TIMEOUT = "champ.event.stream.batch-timeout"; 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 String PARAM_EVENT_STREAM_PUBLISHER_POOL_SIZE = "champ.event.stream.publisher-pool-size"; public static final Integer DEFAULT_EVENT_STREAM_PUBLISHER_POOL_SIZE = 100; /** The event stream topic that we will publish Champ events to. */ |