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

Commit 6a24f2d

Browse files
authored
== override parameters are non-nullable (#6900)
1 parent 9fdc899 commit 6a24f2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/tool/test/util.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ class ProcessCall {
453453
final String? workingDir;
454454

455455
@override
456-
bool operator ==(dynamic other) {
456+
bool operator ==(Object other) {
457457
return other is ProcessCall &&
458458
executable == other.executable &&
459459
listsEqual(args, other.args) &&

0 commit comments

Comments
 (0)