From f36a7b5a6e1afb4e2ee4bb965c77948dd70ddf5b Mon Sep 17 00:00:00 2001 From: millmanorama Date: Mon, 30 Apr 2018 15:08:09 +0200 Subject: [PATCH] fix typo in log message --- .../sleuthkit/autopsy/communications/VisualizationPanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/communications/VisualizationPanel.java b/Core/src/org/sleuthkit/autopsy/communications/VisualizationPanel.java index e0ac3c9220..e7ec7cec82 100644 --- a/Core/src/org/sleuthkit/autopsy/communications/VisualizationPanel.java +++ b/Core/src/org/sleuthkit/autopsy/communications/VisualizationPanel.java @@ -172,7 +172,7 @@ final public class VisualizationPanel extends JPanel implements Lookup.Provider try { super.paint(graphics); } catch (NullPointerException ex) { //NOPMD We can't find the underlying cause in jgraphx - logger.log(Level.WARNING, "There was a NPE while painging the VisualizaitonPanel.", ex); + logger.log(Level.WARNING, "There was a NPE while painting the VisualizaitonPanel.", ex); } }