Skip to content

Commit

Permalink
Update StepRequestHandler.java
Browse files Browse the repository at this point in the history
fix the comment
  • Loading branch information
testforstephen authored Jan 30, 2024
1 parent 8ec67a0 commit d52f8ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ private boolean isSameLocation(Location current, Location original, MethodInvoca
// expression which is wrapped.
return originalMethod.equals(currentMethod)
&& (original.lineNumber() == current.lineNumber()
|| (targetStepIn != null && targetStepIn.lineStart >= current.lineNumber()));
|| (targetStepIn != null && targetStepIn.lineEnd >= current.lineNumber()));
}

/**
Expand Down

0 comments on commit d52f8ba

Please sign in to comment.