branch develop-1.1.x updated (c4cfe4c1 -> a8a4935c)
This is an automated email from the git hooks/post-receive script. New change to branch develop-1.1.x in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git from c4cfe4c1 [jgitflow-maven-plugin]Updating develop poms back to pre merge state new a8a4935c Fix General CMM error517 Exception thrown at users The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit a8a4935ca058894e7170c76d377be29675bdc499 Author: jcouteau <couteau@codelutin.com> Date: Tue May 15 12:00:52 2018 +0200 Fix General CMM error517 Exception thrown at users Summary of changes: .../main/java/com/franciaflex/faxtomail/ui/swing/util/JImagePanel.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop-1.1.x in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit a8a4935ca058894e7170c76d377be29675bdc499 Author: jcouteau <couteau@codelutin.com> Date: Tue May 15 12:00:52 2018 +0200 Fix General CMM error517 Exception thrown at users --- .../main/java/com/franciaflex/faxtomail/ui/swing/util/JImagePanel.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/util/JImagePanel.java b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/util/JImagePanel.java index 63e1052e..2cbcf07c 100644 --- a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/util/JImagePanel.java +++ b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/util/JImagePanel.java @@ -30,6 +30,7 @@ import org.apache.commons.logging.LogFactory; import javax.imageio.ImageIO; import javax.swing.*; import java.awt.*; +import java.awt.color.CMMException; import java.awt.event.ComponentAdapter; import java.awt.event.ComponentEvent; import java.awt.image.BufferedImage; @@ -97,7 +98,7 @@ public class JImagePanel extends JPanel { try { bufferedImage = ImageIO.read(img); - } catch (IOException e) { + } catch (IOException | CMMException e) { log.error("error while reading image " + img.getAbsolutePath(), e); bufferedImage = null; } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm