We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81a562e commit 15f3d1fCopy full SHA for 15f3d1f
app/src/processing/app/EditorConsole.java
@@ -33,6 +33,7 @@
33
import javax.swing.JScrollPane;
34
import javax.swing.JTextPane;
35
import javax.swing.SwingUtilities;
36
+import javax.swing.Timer;
37
import javax.swing.text.AttributeSet;
38
import javax.swing.text.BadLocationException;
39
import javax.swing.text.DefaultStyledDocument;
@@ -126,7 +127,7 @@ public EditorConsole(Editor _editor) {
126
127
128
// periodically post buffered messages to the console
129
// should the interval come from the preferences file?
- new javax.swing.Timer(250, new ActionListener() {
130
+ new Timer(250, new ActionListener() {
131
public void actionPerformed(ActionEvent evt) {
132
SwingUtilities.invokeLater(new Runnable() {
133
@Override
0 commit comments