Skip to content

Commit

Permalink
568217: Better links for stack frame for thread overview
Browse files Browse the repository at this point in the history
Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=568217

Change-Id: I764fb32a3f74c35c30d5a25aecd73bb4b72b6500
  • Loading branch information
ajohnson1 committed Oct 25, 2020
1 parent 7be3d53 commit b103459
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected IStatus run(IProgressMonitor monitor)
preparePattern();
if (methodName != null)
collectMethodMatches(monitor);
if (matches.isEmpty())
if (matches == null || matches.isEmpty())
collectMatches(monitor);
displayResult();

Expand Down

0 comments on commit b103459

Please sign in to comment.