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/MSOCoreBPMN | |
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/MSOCoreBPMN')
-rw-r--r-- | bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/domain/InventoryType.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/domain/InventoryType.java b/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/domain/InventoryType.java index 653f75cc3a..fbc312e750 100644 --- a/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/domain/InventoryType.java +++ b/bpmn/MSOCoreBPMN/src/main/java/org/openecomp/mso/bpmn/core/domain/InventoryType.java @@ -27,7 +27,7 @@ public enum InventoryType{ private String type;
- private InventoryType(String type){
+ InventoryType(String type){
this.type = type;
}
|