Skip to content

Commit

Permalink
Make operator == parameter non-nullable (#38663)
Browse files Browse the repository at this point in the history
  • Loading branch information
srawlins authored Jan 10, 2023
1 parent 41cfbdd commit 95c7b1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/web_ui/lib/src/engine/canvaskit/noto_font.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class CodeunitRange {
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
if (other is! CodeunitRange) {
return false;
}
Expand Down

0 comments on commit 95c7b1f

Please sign in to comment.