diff options
author | Tal Gitelman <tg851x@intl.att.com> | 2017-11-12 18:55:07 +0200 |
---|---|---|
committer | Tal Gitelman <tg851x@intl.att.com> | 2017-11-12 19:38:21 +0200 |
commit | ea70a785c6c041c192a18906485d1e7f2de4e963 (patch) | |
tree | f5f3b2b45e2977815e553cf6202d560fe36822c9 /catalog-be | |
parent | 6f3fb01b6760191a88d1e481bd7650cc5f9f0c4b (diff) |
Bug fix
Change-Id: I9b928575c9f7bb77455177fa8f2eeed8d4f6de0d
Issue-ID: SDC-533
Signed-off-by: Tal Gitelman <tg851x@intl.att.com>
Diffstat (limited to 'catalog-be')
-rw-r--r-- | catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java | 2 |
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) { |