From 15f3d1f8e7e5d43231d3f262d666081c50ee8905 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 25 Nov 2014 15:26:05 +0100 Subject: [PATCH] Fixed import style in EditorConsole.java --- app/src/processing/app/EditorConsole.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/processing/app/EditorConsole.java b/app/src/processing/app/EditorConsole.java index 6ee8e86c8..805a8d768 100644 --- a/app/src/processing/app/EditorConsole.java +++ b/app/src/processing/app/EditorConsole.java @@ -33,6 +33,7 @@ import java.util.List; import javax.swing.JScrollPane; import javax.swing.JTextPane; import javax.swing.SwingUtilities; +import javax.swing.Timer; import javax.swing.text.AttributeSet; import javax.swing.text.BadLocationException; import javax.swing.text.DefaultStyledDocument; @@ -126,7 +127,7 @@ public class EditorConsole extends JScrollPane { // periodically post buffered messages to the console // should the interval come from the preferences file? - new javax.swing.Timer(250, new ActionListener() { + new Timer(250, new ActionListener() { public void actionPerformed(ActionEvent evt) { SwingUtilities.invokeLater(new Runnable() { @Override