Compare commits

...

1 Commits

Author SHA1 Message Date
apoltavtsev
598a0eaf3b Update JobUtils.java 2020-11-03 20:50:26 +01:00

View File

@@ -117,4 +117,10 @@ public class JobUtils {
return false;
}
public static boolean isRoute(Property p) {
if (p != null) {
return ERepositoryObjectType.getType(p).equals(ERepositoryObjectType.PROCESS_ROUTE);
}
return false;
}
}