Commit bf9e2187 authored by Kris Giesing's avatar Kris Giesing

Mark field final in double tap recognizer

parent c7ccf256
......@@ -39,7 +39,7 @@ class DoubleTapGestureRecognizer extends DisposableArenaMember {
Timer _doubleTapTimer;
TapTracker _firstTap;
Map<int, TapTracker> _trackers = new Map<int, TapTracker>();
final Map<int, TapTracker> _trackers = new Map<int, TapTracker>();
void addPointer(PointerInputEvent event) {
// Ignore out-of-bounds second taps
......
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