Skip to content

Commit

Permalink
Fix operator== type in TextDecoration class
Browse files Browse the repository at this point in the history
  • Loading branch information
DavBfr committed Jan 27, 2024
1 parent 5deee6c commit c30728a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pdf/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Update barcode golden pdf
- Add support for hyphenation [ilja]
- Add an option to disable bidirectional support [Olzhas-Suleimen]
- Fix operator== type in TextDecoration class

## 3.10.7

Expand Down
2 changes: 1 addition & 1 deletion pdf/lib/src/widgets/text_style.dart
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class TextDecoration {
}

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

0 comments on commit c30728a

Please sign in to comment.