E5F3 fix issue 277: Don't stop on caught/uncaught exceptions by andxu · Pull Request #172 · microsoft/java-debug · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private void handleDebugEvent(DebugEvent debugEvent, IDebugSession debugSession,
// ignore since SetBreakpointsRequestHandler has already handled
} else if (event instanceof ExceptionEvent) {
ThreadReference thread = ((ExceptionEvent) event).thread();
ThreadReference bpThread = ((BreakpointEvent) event).thread();
ThreadReference bpThread = ((ExceptionEvent) event).thread();
IEvaluationProvider engine = context.getProvider(IEvaluationProvider.class);
if (engine.isInEvaluation(bpThread)) {
return;
Expand Down
0