Skip to content

Commit

Permalink
Fix new lint warnings
Browse files Browse the repository at this point in the history
camera - Remove unnecessary 'break' statement.
in_app_purchase - Remove unreachable siwtch default case.

https://github.com/flutter-tizen/plugins/actions/runs/12425999862/job/34693630064
  • Loading branch information
JSUYA committed Dec 20, 2024
1 parent 9c2a94b commit 89eb19f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/camera/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,6 @@ class _CameraExampleHomeState extends State<CameraExampleHome>
showInSnackBar('Unknown permission error.');
default:
_showCameraException(e);
break;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -741,8 +741,6 @@ class PurchaseStateConverter {
return PurchaseStatus.purchased;
case true:
return PurchaseStatus.canceled;
default:
return PurchaseStatus.error;
}
}
}
Expand Down

0 comments on commit 89eb19f

Please sign in to comment.