aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTal Gitelman <tg851x@intl.att.com>2017-11-12 18:55:07 +0200
committerTal Gitelman <tg851x@intl.att.com>2017-11-12 19:38:21 +0200
commitea70a785c6c041c192a18906485d1e7f2de4e963 (patch)
treef5f3b2b45e2977815e553cf6202d560fe36822c9
parent6f3fb01b6760191a88d1e481bd7650cc5f9f0c4b (diff)
Bug fix
Change-Id: I9b928575c9f7bb77455177fa8f2eeed8d4f6de0d Issue-ID: SDC-533 Signed-off-by: Tal Gitelman <tg851x@intl.att.com>
-rw-r--r--catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java
index b664efebcb..1ab7ffb007 100644
--- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java
+++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java
@@ -3821,7 +3821,7 @@ public class ResourceBusinessLogic extends ComponentBusinessLogic {
String value = null;
List<GetInputValueDataDefinition> getInputs = null;
boolean isValidate = true;
- if (propertyInfo.getValue() != null) {
+ if (null != propertyInfo && null != propertyInfo.getValue()) {
getInputs = propertyInfo.getGet_input();
isValidate = getInputs == null || getInputs.isEmpty();
if (isValidate) {