Commit 965ba387 authored by Sam Rawlins's avatar Sam Rawlins Committed by Flutter GitHub Bot

Remove unused public static members of private classes/enums (#48218)

parent c86517c0
...@@ -158,8 +158,6 @@ class Options extends StatefulWidget { ...@@ -158,8 +158,6 @@ class Options extends StatefulWidget {
} }
class _OptionsState extends State<Options> { class _OptionsState extends State<Options> {
static final GlobalKey<ScaffoldState> scaffoldKey = GlobalKey<ScaffoldState>();
@override @override
void initState() { void initState() {
super.initState(); super.initState();
......
...@@ -422,7 +422,6 @@ enum _AndroidViewState { ...@@ -422,7 +422,6 @@ enum _AndroidViewState {
waitingForSize, waitingForSize,
creating, creating,
created, created,
createFailed,
disposed, disposed,
} }
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
import 'package:flutter/foundation.dart'; import 'package:flutter/foundation.dart';
import '../flutter_test_alternative.dart'; import '../flutter_test_alternative.dart';
// ignore: unused_field
enum _TestEnum { a, b, c, d, e, f, g, h, } enum _TestEnum { a, b, c, d, e, f, g, h, }
void main() { void main() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment