aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBharathS24 <BS00493532@techmahindra.com>2018-08-01 11:54:46 +0530
committerBharathS24 <BS00493532@techmahindra.com>2018-08-01 11:56:13 +0530
commit07d7e9a461097aacb85345ba8bdfe1d7f77a0483 (patch)
treeef6ee5b1f4914c62ef79e743a62fe698cf1fa731
parent794d2e11383ec4fd8862cca4b08e828e4d5d660c (diff)
Sonar Minor issue
Reorder the modifiers to comply with the Java Language Specification Sonar Link : https://sonar.onap.org/issues?myIssues=true&open=AWSYoWCJwGn37JfbvTzi&resolved=false Location : src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java:L63 Change-Id: I63f664c345235a9e6a251170e9b165e6ff0936db Issue-ID: DCAEGEN2-651 Signed-off-by: BharathS24 <BS00493532@techmahindra.com>
-rw-r--r--src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java b/src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java
index af1b3e9..b809d2d 100644
--- a/src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java
+++ b/src/main/java/org/onap/dcae/inventory/daos/InventoryDAOManager.java
@@ -60,7 +60,7 @@ public final class InventoryDAOManager {
}
- private final static Logger debugLogger = LoggerFactory.getLogger("debugLogger");
+ private static final Logger debugLogger = LoggerFactory.getLogger("debugLogger");
// WATCH! Table creation order matters where mapping tables refer to other tables for foreign keys.
private static final List<Class> DAO_CLASSES = Arrays.asList(DCAEServiceTypesDAO.class, DCAEServicesDAO.class,
DCAEServiceComponentsDAO.class, DCAEServicesComponentsMapsDAO.class);