Skip to content

Commit

Permalink
Add missing breaks in switch statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick committed Feb 16, 2018
1 parent 0d03f03 commit 9ef4db2
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,10 @@ public void receiveCommand(RCTMGLMapView mapView, int commandID, @Nullable Reada
break;
case METHOD_TAKE_SNAP:
mapView.takeSnap(args.getString(0), args.getBoolean(1));
break;
case METHOD_GET_ZOOM:
mapView.getZoom(args.getString(0));
break;
case METHOD_GET_CENTER:
mapView.getCenter(args.getString(0));
break;
Expand Down

0 comments on commit 9ef4db2

Please sign in to comment.