Skip to content

Commit

Permalink
Remove unused throws from method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
karoliineh committed Sep 13, 2024
1 parent cde2015 commit ffeac79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ private void stepAllThreadsIntoMatchingEdge(int primaryThreadId, EdgeInfo primar
onThreadsStopped("step", primaryThreadId);
}

private EdgeInfo findTargetEdge(EdgeInfo primaryTargetEdge, List<? extends EdgeInfo> candidateEdges, String threadName) throws IllegalStepException {
private EdgeInfo findTargetEdge(EdgeInfo primaryTargetEdge, List<? extends EdgeInfo> candidateEdges, String threadName) {
// This is will make ambiguous threads unavailable if there are multiple distinct target edges with the same target CFG node.
// TODO: Somehow ensure this can never happen.
// Options:
Expand Down

0 comments on commit ffeac79

Please sign in to comment.