aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSnigdha Sucharita Patra <sp00503415@techmahindra.com>2018-02-13 09:02:19 +0530
committerSnigdha Sucharita Patra <sp00503415@techmahindra.com>2018-02-13 09:02:19 +0530
commit6cb0277eba73e8960d8678c67a3fc64a98e85880 (patch)
treede78e955ec529ac87791c3168b9b806772f86783
parent0a54e8b3432a869f0d18ca0f25352a9eb74d965c (diff)
sonar issue
Modifiers should be declared in the correct order Sonar Link: https://sonar.onap.org/project/issues?assignees=Snigdha503415&id=org.onap.dcaegen2.platform%3Ainventory-api&open=AWEPiFG5-08if2a6xy_m&resolved=false&severities=MINOR Location: src/main/java./inventory/exceptions/mappers/DBIExceptionMapper.java Line No-73 Change-Id: Ib7371864a47a7b5d6ee160083b4034a6fa17c65f Issue-ID: DCAEGEN2-331 Signed-off-by: Snigdha Sucharita Patra <sp00503415@techmahindra.com>
-rw-r--r--src/main/java/org/onap/dcae/inventory/exceptions/mappers/DBIExceptionMapper.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/dcae/inventory/exceptions/mappers/DBIExceptionMapper.java b/src/main/java/org/onap/dcae/inventory/exceptions/mappers/DBIExceptionMapper.java
index 4e52b49..0bb22a1 100644
--- a/src/main/java/org/onap/dcae/inventory/exceptions/mappers/DBIExceptionMapper.java
+++ b/src/main/java/org/onap/dcae/inventory/exceptions/mappers/DBIExceptionMapper.java
@@ -70,7 +70,7 @@ public class DBIExceptionMapper<T extends DBIException> implements ExceptionMapp
// Here are the handlers for specific derived DBIException
- public final static class UnableToObtainConnectionExceptionMapper extends DBIExceptionMapper<UnableToObtainConnectionException> {
+ public static final class UnableToObtainConnectionExceptionMapper extends DBIExceptionMapper<UnableToObtainConnectionException> {
}
public final static class UnableToCreateStatementExceptionMapper extends DBIExceptionMapper<UnableToCreateStatementException> {