diff --git a/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/ColorSpaces.java b/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/ColorSpaces.java index 7a408615..c3203daf 100644 --- a/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/ColorSpaces.java +++ b/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/ColorSpaces.java @@ -52,7 +52,7 @@ import java.util.Properties; *

* Color profiles may be configured by placing a property-file * {@code com/twelvemonkeys/imageio/color/icc_profiles.properties} - * on the classpath, specifying the full path to the profile. + * on the classpath, specifying the full path to the profiles. * ICC color profiles are probably already present on your system, or * can be downloaded from * ICC, @@ -342,7 +342,7 @@ public final class ColorSpaces { try { return ICC_Profile.getInstance(profilePath); } - catch (IOException ignore) { + catch (SecurityException | IOException ignore) { if (DEBUG) { ignore.printStackTrace(); }