Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fb5549f6 authored by Daniel Sandler's avatar Daniel Sandler Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE."

parents 500b003f 75fcac4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -234,7 +234,7 @@ public class GestureRecorder {
                w.close();
                mGestures.clear();
                // If we have a pending gesture, push it back
                if (!mCurrentGesture.isComplete()) {
                if (mCurrentGesture != null && !mCurrentGesture.isComplete()) {
                    mGestures.add(mCurrentGesture);
                }
                if (DEBUG) {