Skip to content

Commit

Permalink
Fix for latest lints
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Jan 1, 2025
1 parent fe373d4 commit f7600d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build_cli/tool/builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ LibraryBuilder _builder(_ReplaceGenerator generator) => LibraryBuilder(
formatOutput: (a, v) => a,
);

Builder defaultOverride([_]) => _builder(_NonNullableGenerator());
Builder defaultOverride([BuilderOptions? _]) =>
_builder(_NonNullableGenerator());

abstract class _ReplaceGenerator extends Generator {
final String gName;
Expand Down

0 comments on commit f7600d9

Please sign in to comment.