diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2019-08-13 08:39:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-13 08:39:59 +0000 |
commit | 247c4a5b3e0c0ff9401785cf7e4c2070a7d4b928 (patch) | |
tree | c566a1be208ffe96f1fd2d800187642c15721c19 /asdc-controller/src/main/java/org | |
parent | 5b2bafa99ce79ef6b05ea9a5e9f5b1853bfbba59 (diff) | |
parent | 3c7190b95244c8b7282d3a5c3f94daeb7b76386a (diff) |
Merge "Change variable name-comply with regex"
Diffstat (limited to 'asdc-controller/src/main/java/org')
-rw-r--r-- | asdc-controller/src/main/java/org/onap/so/asdc/installer/ResourceStructure.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/asdc-controller/src/main/java/org/onap/so/asdc/installer/ResourceStructure.java b/asdc-controller/src/main/java/org/onap/so/asdc/installer/ResourceStructure.java index 8be3d6ba06..f2c6b2f16a 100644 --- a/asdc-controller/src/main/java/org/onap/so/asdc/installer/ResourceStructure.java +++ b/asdc-controller/src/main/java/org/onap/so/asdc/installer/ResourceStructure.java @@ -61,7 +61,7 @@ public abstract class ResourceStructure { /** * Number of resources provided by the resource structure. */ - protected int NumberOfResources; + protected int numberOfResources; /** * The list of artifacts existing in this resource hashed by UUID. @@ -142,11 +142,11 @@ public abstract class ResourceStructure { } public int getNumberOfResources() { - return NumberOfResources; + return numberOfResources; } public void setNumberOfResources(int numberOfResources) { - NumberOfResources = numberOfResources; + this.numberOfResources = numberOfResources; } public Map<String, VfModuleArtifact> getArtifactsMapByUUID() { |