Skip to content

Commit 363f29e

Browse files
authored
Replace events.removeFirst with events.removeAt(0) (#50)
1 parent ac36a4f commit 363f29e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/android/src/main/java/com/capacitorjs/plugins/googlemaps/CapacitorGoogleMapsPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ class CapacitorGoogleMapsPlugin : Plugin(), OnMapsSdkInitializedCallback {
888888
} else {
889889
this.bridge.webView.onTouchEvent(event)
890890
}
891-
events.removeFirst()
891+
events.removeAt(0)
892892
}
893893
}
894894

0 commit comments

Comments
 (0)