aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSnigdha Sucharita Patra <sp00503415@techmahindra.com>2018-02-13 09:18:07 +0530
committerSnigdha Sucharita Patra <sp00503415@techmahindra.com>2018-02-13 09:18:07 +0530
commitd092abc6118fbf1fa22e7daee0b6ae5e38190cbb (patch)
tree18b1b297b90f62afa8b160b65660943172f9596a
parent6cb0277eba73e8960d8678c67a3fc64a98e85880 (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=AWEPiFG6-08if2a6xy_n&resolved=false&severities=MINOR Location: src/.../inventory/exceptions/mappers/DBIExceptionMapper.java Line No-76 Change-Id: I8973b95dcacd81ad5343fc0248ff90b8c1eb35d8 Issue-ID: DCAEGEN2-332 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 0bb22a1..5e637bd 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
@@ -73,7 +73,7 @@ public class DBIExceptionMapper<T extends DBIException> implements ExceptionMapp
public static final class UnableToObtainConnectionExceptionMapper extends DBIExceptionMapper<UnableToObtainConnectionException> {
}
- public final static class UnableToCreateStatementExceptionMapper extends DBIExceptionMapper<UnableToCreateStatementException> {
+ public static final class UnableToCreateStatementExceptionMapper extends DBIExceptionMapper<UnableToCreateStatementException> {
}
public final static class UnableToExecuteStatementExceptionMapper extends DBIExceptionMapper<UnableToExecuteStatementException> {