aboutsummaryrefslogtreecommitdiffstats
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/org/onap/sdc/tosca/parser/impl/SdcCsarHelperImpl.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/org/onap/sdc/tosca/parser/impl/SdcCsarHelperImpl.java b/src/main/java/org/onap/sdc/tosca/parser/impl/SdcCsarHelperImpl.java
index ed6345c..f82272b 100644
--- a/src/main/java/org/onap/sdc/tosca/parser/impl/SdcCsarHelperImpl.java
+++ b/src/main/java/org/onap/sdc/tosca/parser/impl/SdcCsarHelperImpl.java
@@ -820,7 +820,9 @@ public class SdcCsarHelperImpl implements ISdcCsarHelper {
if (ntProperties != null && ntProperties.size() > 0) {
for (Property current : ntProperties.values()) {
- filterProperties(current.getValue(), current.getName(), filterType, pattern, filterMap);
+ if (current.getValue() != null) {
+ filterProperties(current.getValue(), current.getName(), filterType, pattern, filterMap);
+ }
}
}