aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTECHMAHINDRA\BS00493532 <BS00493532@techmahindra.com>2018-02-02 12:02:37 +0530
committerTECHMAHINDRA\BS00493532 <BS00493532@techmahindra.com>2018-02-02 12:03:22 +0530
commit2e3c7073b8a79a0003b0f9d38a53fee12742100f (patch)
tree0217cb42e8c20c76b567c71694eb5290b2365483
parent3a2703f01b5e0431ce390cd5e21f4b19d39fdded (diff)
Remove this redundant static qualifier
Remove this redundant static qualifier DCAEServiceObject.java Sonar link : https://sonar.onap.org/component_issues/index?id=org.onap.dcaegen2.platform%3Ainventory-api#resolved=false|severities=MAJOR|assignees=BharathS24 Location : src/main/java/org/onap/dcae/inventory/dbthings/models/DCAEServiceObject.java Change-Id: Ib4a38feca00aaf9282b4bc21407e35a7d613d9c7 Issue-ID: DCAEGEN2-297 Signed-off-by: TECHMAHINDRA\BS00493532 <BS00493532@techmahindra.com>
-rw-r--r--src/main/java/org/onap/dcae/inventory/dbthings/models/DCAEServiceObject.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/dcae/inventory/dbthings/models/DCAEServiceObject.java b/src/main/java/org/onap/dcae/inventory/dbthings/models/DCAEServiceObject.java
index 83e2bfe..232c18a 100644
--- a/src/main/java/org/onap/dcae/inventory/dbthings/models/DCAEServiceObject.java
+++ b/src/main/java/org/onap/dcae/inventory/dbthings/models/DCAEServiceObject.java
@@ -29,7 +29,7 @@ import org.joda.time.DateTimeZone;
*/
public class DCAEServiceObject {
- public static enum DCAEServiceStatus {
+ public enum DCAEServiceStatus {
RUNNING,
REMOVED
}