Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

== override parameters are non-nullable #6900

Merged
merged 4 commits into from
Jan 10, 2023
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
2 changes: 1 addition & 1 deletion script/tool/test/util.dart
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ class ProcessCall {
final String? workingDir;

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return other is ProcessCall &&
executable == other.executable &&
listsEqual(args, other.args) &&
Expand Down