Skip to content

Commit 9455be5

Browse files
Mark exception as ignored
1 parent 301a69e commit 9455be5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/assertthat/selenium_shutterbug/utils/image/ImageProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ public static boolean hasAlpha(Image image) {
262262
PixelGrabber pg = new PixelGrabber(image, 0, 0, 1, 1, false);
263263
try {
264264
pg.grabPixels();
265-
} catch (InterruptedException e) {
265+
} catch (InterruptedException ignored) {
266266
}
267267
// Get the image's color model
268268
ColorModel cm = pg.getColorModel();

0 commit comments

Comments
 (0)