Skip to content

Commit 9f55bda

Browse files
committed
DAS insights: use continue instead of return when crashed plugin
When I forked this page for a _list_ of plugin isolates, I neglected to convert this 'return' into a 'continue'. Change-Id: I61868a83a379c910b3381134c165b6ddb4f45ff1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/450100 Auto-Submit: Samuel Rawlins <[email protected]> Reviewed-by: Brian Wilkerson <[email protected]>
1 parent 79b9cce commit 9f55bda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/analysis_server/lib/src/status/pages/plugins_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class PluginsPage extends DiagnosticPageWithNav {
5959
'starting).',
6060
);
6161
}
62-
return;
62+
continue;
6363
}
6464

6565
p('Associated contexts:');

0 commit comments

Comments
 (0)