Compare commits

...

2 Commits

Author SHA1 Message Date
apoltavtsev
ba07eccf67 Update ProcessUtils.java 2020-12-01 17:12:34 +01:00
apoltavtsev
c0f1fb0827 TESB-31293 Some fixes in TESB-29553 cause performance issue 2020-12-01 17:09:57 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -84,6 +84,7 @@ public interface IProcess extends IElement {
public List<? extends INode> getNodesOfType(String componentName);
public boolean checkPresenceNodeOfType(String componentName);
/**
* Comment method "getAllConnections".
*

View File

@@ -1006,9 +1006,8 @@ public final class ProcessUtils {
}
public static boolean isChildRouteProcess(IProcess process) {
List n = process.getNodesOfType("tRouteInput");
if (n!=null && n.size()!=0) {
return true;
if (process != null) {
return process.checkPresenceNodeOfType("tRouteInput");
}
return false;
}