Commit 1516920f authored by Christos Tranoris's avatar Christos Tranoris
Browse files

fix for null

parent bd13c4c4
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;				
			}