diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2018-03-12 08:05:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-12 08:05:04 +0000 |
commit | 4bd346b4bcebb970160074485e6930a99e9e532e (patch) | |
tree | efc9e683fe3990c5e5b5512351afa9f0ee7ba93e /bpmn/MSOCommonBPMN/src/main/java | |
parent | a7aee05afbde5c504e3a16a1e58cbeb5642abe17 (diff) | |
parent | 620dd29f016af097ea8428badd1f32d868d6d04c (diff) |
Merge changes I5a320c60,I3fbd868e
* changes:
Remove unnecessary simicolon from all java classes
private is redundant for enum constructors
Diffstat (limited to 'bpmn/MSOCommonBPMN/src/main/java')
-rw-r--r-- | bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/policy/entities/PolicyServiceType.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/policy/entities/PolicyServiceType.java b/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/policy/entities/PolicyServiceType.java index b5ab63ce35..01f6738947 100644 --- a/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/policy/entities/PolicyServiceType.java +++ b/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/policy/entities/PolicyServiceType.java @@ -36,7 +36,7 @@ public enum PolicyServiceType { private final String name; - private PolicyServiceType(String name) { + PolicyServiceType(String name) { this.name = name; } |