Skip to content

Commit 25b86b6

Browse files
committed
Remove dead code
Change-Id: Ice4bf3a94743019a8fc8ab04ee3de19f27a9e2c3
1 parent b1a1e5c commit 25b86b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/java/android/webkit/WebViewClassic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,7 @@ private void onHandleUiTouchEvent(MotionEvent ev) {
13701370
if (action == MotionEvent.ACTION_POINTER_DOWN) {
13711371
cancelTouch();
13721372
action = MotionEvent.ACTION_DOWN;
1373-
} else if (action == MotionEvent.ACTION_POINTER_UP && ev.getPointerCount() >= 2) {
1373+
} else if (action == MotionEvent.ACTION_POINTER_UP) {
13741374
// set mLastTouchX/Y to the remaining points for multi-touch.
13751375
mLastTouchX = Math.round(x);
13761376
mLastTouchY = Math.round(y);

0 commit comments

Comments
 (0)