Skip to content

Commit

Permalink
fix: #1505 - removed an unnecessary final (#1507)
Browse files Browse the repository at this point in the history
Impacted file:
* `dao_product_list.dart`: removed an unnecessary `final`
  • Loading branch information
monsieurtanuki authored Apr 7, 2022
1 parent e9ec9b3 commit b0ccaee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/smooth_app/lib/database/dao_product_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class _BarcodeListAdapter extends TypeAdapter<_BarcodeList> {
_BarcodeList read(BinaryReader reader) {
final int timestamp = reader.readInt();
final List<String> barcodes = reader.readStringList();
late final int totalSize;
late int totalSize;
try {
totalSize = reader.readInt();
} catch (e) {
Expand Down

0 comments on commit b0ccaee

Please sign in to comment.