mirror of
https://github.com/sony/flutter-elinux.git
synced 2025-08-26 22:10:18 +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`
|
/// See: [DevelopmentArtifact] in `cache.dart`
|
||||||
class ELinuxDevelopmentArtifact implements DevelopmentArtifact {
|
class ELinuxDevelopmentArtifact implements DevelopmentArtifact {
|
||||||
// ignore: unused_element
|
// ignore: unused_element
|
||||||
const ELinuxDevelopmentArtifact._(this.name, {this.feature});
|
const ELinuxDevelopmentArtifact._(this.name);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
final String name;
|
final String name;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
final Feature? feature;
|
final Feature? feature = null;
|
||||||
|
|
||||||
static const DevelopmentArtifact elinux = ELinuxDevelopmentArtifact._('elinux');
|
static const DevelopmentArtifact elinux = ELinuxDevelopmentArtifact._('elinux');
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user