Skip to content

Commit

Permalink
Add missing break to switch case (flutter#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
sigurdm authored Jan 9, 2018
1 parent 82da93d commit 9308579
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ public void onMethodCall(MethodCall call, final Result result) {
}
cams.clear();
result.success(null);
break;
case "list":
try {
String[] cameraNames = cameraManager.getCameraIdList();
Expand Down

0 comments on commit 9308579

Please sign in to comment.