mirror of
https://github.com/rizinorg/cutter.git
synced 2024-11-30 16:20:25 +00:00
widgets: redundant return-break (#2922)
Removed consecutive return-break statements.
This commit is contained in:
parent
ea519df01e
commit
aed42d7300
@ -664,13 +664,11 @@ void GraphView::mousePressEvent(QMouseEvent *event)
|
||||
showBlock(blocks[edge.target]);
|
||||
// TODO: Callback to child
|
||||
return;
|
||||
break;
|
||||
}
|
||||
if (checkPointClicked(end, pos.x(), pos.y(), true)) {
|
||||
showBlock(block);
|
||||
// TODO: Callback to child
|
||||
return;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user