Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 29164fc

Browse files
authored
Fix build (#554)
Missing a parenthesis.
1 parent 06021d6 commit 29164fc

File tree

1 file changed

+1
-1
lines changed
  • MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps

1 file changed

+1
-1
lines changed

MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/MapView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ public boolean onTouchEvent(MotionEvent event) {
550550
}
551551

552552
for (OnTouchListener listener : onTouchListeners) {
553-
if (listener.onTouch(this, event) {
553+
if (listener.onTouch(this, event)) {
554554
return true;
555555
}
556556
}

0 commit comments

Comments
 (0)