We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a35a0d commit fa71962Copy full SHA for fa71962
packages/SystemUI/src/com/android/systemui/statusbar/GestureRecorder.java
@@ -101,8 +101,7 @@ public void add(MotionEvent ev) {
101
mDownTime = ev.getDownTime();
102
} else {
103
if (mDownTime != ev.getDownTime()) {
104
- // TODO: remove
105
- throw new RuntimeException("Assertion failure in GestureRecorder: event downTime ("
+ Slog.w(TAG, "Assertion failure in GestureRecorder: event downTime ("
106
+ev.getDownTime()+") does not match gesture downTime ("+mDownTime+")");
107
}
108
0 commit comments