Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Nilhcem committed May 5, 2014
1 parent 4c86b5d commit 19fe0b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public void mouseClicked(MouseEvent e) {
JTable target = (JTable) e.getSource();
String fileName = UIModel.INSTANCE.getListMailsMap().get(target.getSelectedRow());
if (fileName == null) {
LOGGER.error("Can't file any associated email for row #{}", target.getSelectedRow());
LOGGER.error("Can't find any associated email for row #{}", target.getSelectedRow());
} else {
file = new File(fileName);
}
Expand Down

0 comments on commit 19fe0b2

Please sign in to comment.