Skip to content

Commit 51b5444

Browse files
committed
Fix metric ignore
1 parent 7642940 commit 51b5444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dwds/lib/src/services/chrome_proxy_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ class ChromeProxyService implements VmServiceInterface {
411411
for (final breakpoint in isolate.breakpoints?.toList() ?? <Breakpoint>[]) {
412412
if (libraries == null ||
413413
(breakpoint.location.script != null &&
414-
// ignore: avoid-unrelated-type-casts
414+
// ignore: avoid-collection-methods-with-unrelated-types
415415
libraries.contains(breakpoint.location.script.uri))) {
416416
await (await debuggerFuture).removeBreakpoint(breakpoint.id!);
417417
}

0 commit comments

Comments
 (0)