Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update StepRequestHandler.java
fix the comment
  • Loading branch information
testforstephen authored Jan 30, 2024
commit d52f8baf73ba8a6e5c024bd9ddbcbe3b3ad7fe54
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