Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[android] - fix OnCameraMoveStartedListener typo (#9664)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobrun committed Aug 1, 2017
1 parent 9a9c433 commit 21bbf5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1708,7 +1708,7 @@ public void setOnCameraMoveCancelListener(@Nullable OnCameraMoveCanceledListener
* @param listener the listener to notify
*/
@UiThread
public void setOnCameraMoveStartedistener(@Nullable OnCameraMoveStartedListener listener) {
public void setOnCameraMoveStartedListener(@Nullable OnCameraMoveStartedListener listener) {
cameraChangeDispatcher.setOnCameraMoveStartedListener(listener);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void onCameraMove() {
}
});

mapboxMap.setOnCameraMoveStartedistener(new MapboxMap.OnCameraMoveStartedListener() {
mapboxMap.setOnCameraMoveStartedListener(new MapboxMap.OnCameraMoveStartedListener() {

private final String[] REASONS = {"REASON_API_GESTURE", "REASON_DEVELOPER_ANIMATION", "REASON_API_ANIMATION"};

Expand Down

0 comments on commit 21bbf5a

Please sign in to comment.