Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mgenware committed Sep 29, 2024
1 parent 9dcbeb9 commit 50f252e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions lib/src/simple_isolate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,7 @@ class SimpleIsolate<R> {
entryFn(entryRawParam);
} else {
isolate = await Isolate.spawn(entryFn, entryRawParam,
errorsAreFatal: true,
onExit: rp.sendPort,
onError: rp.sendPort,
debugName: debugName);
onExit: rp.sendPort, onError: rp.sendPort, debugName: debugName);
}

return SimpleIsolate<T>._(isolate, completer.future,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ environment:
sdk: ">=2.13.0 <4.0.0"

dev_dependencies:
mgenware_dart_lints: ^5.0.0
mgenware_dart_lints: ^6.5.2
test: ^1.16.0

0 comments on commit 50f252e

Please sign in to comment.