File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
packages/flutter_test/lib/src Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -678,8 +678,7 @@ class TestFlutterView implements FlutterView {
678
678
final TestDisplay _display;
679
679
680
680
@override
681
- // TODO(goderbauer): Clean ignore and cast up after https://github.com/flutter/engine/pull/42493 lands.
682
- int get viewId => _view.viewId as int ; // ignore: unnecessary_cast
681
+ int get viewId => _view.viewId;
683
682
684
683
/// The device pixel ratio to use for this test.
685
684
///
@@ -2089,8 +2088,7 @@ class TestWindow implements SingletonFlutterWindow {
2089
2088
'This feature was deprecated after v3.9.0-0.1.pre.'
2090
2089
)
2091
2090
@override
2092
- // TODO(goderbauer): Clean ignore and cast up after https://github.com/flutter/engine/pull/42493 lands.
2093
- int get viewId => _view.viewId as int ; // ignore: unnecessary_cast
2091
+ int get viewId => _view.viewId;
2094
2092
2095
2093
/// This gives us some grace time when the dart:ui side adds something to
2096
2094
/// [SingletonFlutterWindow] , and makes things easier when we do rolls to give
You can’t perform that action at this time.
0 commit comments