diff options
author | Gitelman, Tal (tg851x) <tg851x@intl.att.com> | 2018-03-19 17:05:55 +0200 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2018-03-19 16:06:16 +0000 |
commit | a5ce6e4de3dacfac916cfc3b3270a0d7f190b632 (patch) | |
tree | bf1b58594eeeba222a62d6651a2e61e01ed2fd08 /catalog-be/src/main/java/org | |
parent | e0662081be935579d431d6c591a508cc05718b1d (diff) |
Align current csit testing - fix CSIT tests
Change-Id: I63e1af740ca281da404231bb3bff67f4c94541e1
Issue-ID: SDC-1097
Signed-off-by: Gitelman, Tal (tg851x) <tg851x@intl.att.com>
Diffstat (limited to 'catalog-be/src/main/java/org')
-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 f6cb50c5c2..0dce2a3cd9 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 @@ -2857,7 +2857,7 @@ public class ResourceBusinessLogic extends ComponentBusinessLogic { String value = null; List<GetInputValueDataDefinition> getInputs = null; boolean isValidate = true; - if (propertyInfo.getValue() != null) { + if (null != propertyInfo && propertyInfo.getValue() != null) { getInputs = propertyInfo.getGet_input(); isValidate = getInputs == null || getInputs.isEmpty(); if (isValidate) { |