From: BharathS24 Date: Wed, 1 Aug 2018 06:24:46 +0000 (+0530) Subject: Sonar Minor issue X-Git-Tag: 3.0.4~9 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F39%2F58339%2F1;p=dcaegen2%2Fplatform%2Finventory-api.git 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 --- 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 DAO_CLASSES = Arrays.asList(DCAEServiceTypesDAO.class, DCAEServicesDAO.class, DCAEServiceComponentsDAO.class, DCAEServicesComponentsMapsDAO.class);