Skip to content

Commit bd74988

Browse files
chore: Fix lint issues for camera
1 parent dbe53ba commit bd74988

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

camera/android/src/main/java/com/capacitorjs/plugins/camera/CameraPlugin.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -719,8 +719,7 @@ private Uri getTempImage(Uri u, ByteArrayOutputStream bitmapOutputStream) {
719719
try {
720720
bis = new ByteArrayInputStream(bitmapOutputStream.toByteArray());
721721
newUri = saveImage(u, bis);
722-
} catch (IOException ex) {
723-
} finally {
722+
} catch (IOException ex) {} finally {
724723
if (bis != null) {
725724
try {
726725
bis.close();

0 commit comments

Comments
 (0)