Skip to content

Commit 15f3d1f

Browse files
committed
Fixed import style in EditorConsole.java
1 parent 81a562e commit 15f3d1f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/src/processing/app/EditorConsole.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
import javax.swing.JScrollPane;
3434
import javax.swing.JTextPane;
3535
import javax.swing.SwingUtilities;
36+
import javax.swing.Timer;
3637
import javax.swing.text.AttributeSet;
3738
import javax.swing.text.BadLocationException;
3839
import javax.swing.text.DefaultStyledDocument;
@@ -126,7 +127,7 @@ public EditorConsole(Editor _editor) {
126127

127128
// periodically post buffered messages to the console
128129
// should the interval come from the preferences file?
129-
new javax.swing.Timer(250, new ActionListener() {
130+
new Timer(250, new ActionListener() {
130131
public void actionPerformed(ActionEvent evt) {
131132
SwingUtilities.invokeLater(new Runnable() {
132133
@Override

0 commit comments

Comments
 (0)