fix typo in log message

This commit is contained in:
millmanorama 2018-04-30 15:08:09 +02:00
parent b6f33bf798
commit f36a7b5a6e

View File

@ -172,7 +172,7 @@ final public class VisualizationPanel extends JPanel implements Lookup.Provider
try { try {
super.paint(graphics); super.paint(graphics);
} catch (NullPointerException ex) { //NOPMD We can't find the underlying cause in jgraphx } 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);
} }
} }