File tree 3 files changed +1
-5
lines changed
3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -868,8 +868,6 @@ class _ContextMenuRouteStaticState extends State<_ContextMenuRouteStatic> with T
868
868
static const double _kDamping = 400.0 ;
869
869
static const Duration _kMoveControllerDuration = Duration (milliseconds: 600 );
870
870
871
- final GlobalKey _childGlobalKey = GlobalKey ();
872
-
873
871
Offset _dragOffset;
874
872
double _lastScale = 1.0 ;
875
873
AnimationController _moveController;
Original file line number Diff line number Diff line change @@ -43,11 +43,10 @@ typedef GestureMultiTapCancelCallback = void Function(int pointer);
43
43
class _CountdownZoned {
44
44
_CountdownZoned ({ @required Duration duration })
45
45
: assert (duration != null ) {
46
- _timer = Timer (duration, _onTimeout);
46
+ Timer (duration, _onTimeout);
47
47
}
48
48
49
49
bool _timeout = false ;
50
- Timer _timer;
51
50
52
51
bool get timeout => _timeout;
53
52
Original file line number Diff line number Diff line change @@ -2595,7 +2595,6 @@ class SemanticsOwner extends ChangeNotifier {
2595
2595
final Set <SemanticsNode > _dirtyNodes = < SemanticsNode > {};
2596
2596
final Map <int , SemanticsNode > _nodes = < int , SemanticsNode > {};
2597
2597
final Set <SemanticsNode > _detachedNodes = < SemanticsNode > {};
2598
- final Map <int , CustomSemanticsAction > _actions = < int , CustomSemanticsAction > {};
2599
2598
2600
2599
/// The root node of the semantics tree, if any.
2601
2600
///
You can’t perform that action at this time.
0 commit comments