Skip to content
Snippets Groups Projects
Commit 1516920f authored by tranoris's avatar tranoris
Browse files

fix for null

parent bd13c4c4
No related branches found
No related tags found
2 merge requests!12Merging 2024Q2_RC into main, creating 2024Q2 Release,!10Parent child characteristics
Pipeline #4447 failed
......@@ -153,7 +153,7 @@ public class ProcessCreateServiceRules implements JavaDelegate {
List<String> servicesToCreate = new ArrayList<>();
for (String specid : tobeCreated.keySet()) {
if ( tobeCreated.get(specid) !=null ) {
if ( tobeCreated.containsKey(specid) ) {
servicesToCreate.add(specid);
allSupportingServicesCreated = false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment