// that don't involve that Procedure
if (args.hasParam(ArgumentsParser.PARAM_CONFLICTS_FOCUS_PROCEDURE)) {
String procName = args.getParam(ArgumentsParser.PARAM_CONFLICTS_FOCUS_PROCEDURE);
Procedure catalog_proc = args.catalogContext.procedures.getIgnoreCase(procName);
if (catalog_proc != null) {
ConflictVertex v = graph.getVertex(catalog_proc);
assert(v != null);
GraphUtil.removeEdgesWithoutVertex(graph, v);
GraphUtil.removeDisconnectedVertices(graph);
} else {
LOG.warn("Invalid procedure name to focus '" + procName + "'");