diff options
author | 2020-05-13 13:43:29 +0530 | |
---|---|---|
committer | 2020-05-14 13:40:19 +0000 | |
commit | d41aae5d068ef5a2f8db9fbb2cbfafe8f781bde4 (patch) | |
tree | 28eac7f402050fd67d0cf52b334f43a6d0a1fe8b /appc-client | |
parent | 969c2cef6fb373244112d06b7328c9ece4be8571 (diff) |
removed code smells
Issue-ID: APPC-1859
Change-Id: I02807b0d4bbc3b1d47945e4ff397647a06eb5e03
Signed-off-by: Rupinder <rupinsi1@in.ibm.com>
Diffstat (limited to 'appc-client')
-rw-r--r-- | appc-client/client-lib/src/main/java/org/onap/appc/client/impl/core/CoreManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appc-client/client-lib/src/main/java/org/onap/appc/client/impl/core/CoreManager.java b/appc-client/client-lib/src/main/java/org/onap/appc/client/impl/core/CoreManager.java index 4c0c535d4..0b231de36 100644 --- a/appc-client/client-lib/src/main/java/org/onap/appc/client/impl/core/CoreManager.java +++ b/appc-client/client-lib/src/main/java/org/onap/appc/client/impl/core/CoreManager.java @@ -45,8 +45,8 @@ class CoreManager{ private final ITimerService timerService; private final TaskQueueManager queueManager; private String DEFAULT_TIMEOUT = "300000"; - private final static String RESPONSE_TIMEOUT = "client.response.timeout"; - private final static String GRACEFUL_SHUTDOWN_TIMEOUT = "client.graceful.shutdown.timeout"; + private static final String RESPONSE_TIMEOUT = "client.response.timeout"; + private static final String GRACEFUL_SHUTDOWN_TIMEOUT = "client.graceful.shutdown.timeout"; private boolean isForceShutdown = false; private AtomicBoolean isGracefulShutdown = new AtomicBoolean(false); private long shutdownTimeout; |