branch develop updated (27bbf26a -> 8c7b7aae)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git from 27bbf26a Update dependencies new 8c7b7aae 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 8c7b7aaede757d0704948a04cf296a010eebcf45 Author: jcouteau <couteau@codelutin.com> Date: Tue May 15 12:02:11 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 in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit 8c7b7aaede757d0704948a04cf296a010eebcf45 Author: jcouteau <couteau@codelutin.com> Date: Tue May 15 12:02:11 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..f38a03d8 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