-
Bug
-
Resolution: Done
-
Major
-
None
-
None
Presently the following is executed for every deployment for every deployment phase: -
Set<String> subSystemNames = list.stream().map(e -> e.getSubsystemName()).collect(Collectors.toSet());
This will be leading to a lot of unnecessary object allocation which could be avoided with a simple for loop instead.