From: Liang Ding Date: Tue, 29 Jan 2019 08:08:58 +0000 (-0800) Subject: fix a typo X-Git-Tag: 1.4.0~110 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F95%2F77495%2F2;p=sdc.git fix a typo VfModuleArtifacGenerator -> VfModuleArtifactGenerator Change-Id: I58fa51c74974adef1f32c52eb3eee61fb56cb2ee Issue-ID: SDC-2087 Signed-off-by: Liang Ding --- diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java index b426d66598..e9c46cadcf 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java @@ -1522,7 +1522,7 @@ public class ServiceBusinessLogic extends ComponentBusinessLogic { List> asList = new ArrayList<>(); if (ri.getOriginType() == OriginTypeEnum.VF) { - asList = Arrays.asList(new VfModuleArtifacGenerator(modifier, ri, service, shouldLock, inTransaction)); + asList = Arrays.asList(new VfModuleArtifactGenerator(modifier, ri, service, shouldLock, inTransaction)); } return asList; } @@ -1723,7 +1723,7 @@ public class ServiceBusinessLogic extends ComponentBusinessLogic { } - class VfModuleArtifacGenerator extends ArtifactGenerator { + class VfModuleArtifactGenerator extends ArtifactGenerator { private User user; private ComponentInstance componentInstance; private Service service; @@ -1735,7 +1735,7 @@ public class ServiceBusinessLogic extends ComponentBusinessLogic { return generateVfModuleInstanceArtifact(user, componentInstance, service, shouldLock, inTransaction); } - private VfModuleArtifacGenerator(User user, ComponentInstance componentInstance, Service service, boolean shouldLock, boolean inTransaction) { + private VfModuleArtifactGenerator(User user, ComponentInstance componentInstance, Service service, boolean shouldLock, boolean inTransaction) { super(); this.user = user; this.componentInstance = componentInstance;