mirror of
https://github.com/sony/flutter-elinux.git
synced 2025-08-26 11:21:58 +08:00
refactor: Remove unused feature parameter
The `unused_element_parameter` lint warning for the `feature` parameter was causing failures in the GitHub Actions CI workflow.
This commit is contained in:
@ -27,13 +27,13 @@ mixin ELinuxRequiredArtifacts on FlutterCommand {
|
||||
/// See: [DevelopmentArtifact] in `cache.dart`
|
||||
class ELinuxDevelopmentArtifact implements DevelopmentArtifact {
|
||||
// ignore: unused_element
|
||||
const ELinuxDevelopmentArtifact._(this.name, {this.feature});
|
||||
const ELinuxDevelopmentArtifact._(this.name);
|
||||
|
||||
@override
|
||||
final String name;
|
||||
|
||||
@override
|
||||
final Feature? feature;
|
||||
final Feature? feature = null;
|
||||
|
||||
static const DevelopmentArtifact elinux = ELinuxDevelopmentArtifact._('elinux');
|
||||
}
|
||||
|
Reference in New Issue
Block a user