File tree 2 files changed +1
-4
lines changed
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
package processing .app ;
2
2
3
3
import cc .arduino .packages .BoardPort ;
4
- import cc .arduino .packages .DiscoveryManager ;
5
4
import processing .app .legacy .PApplet ;
6
5
7
6
import javax .swing .*;
10
9
import java .awt .event .ActionListener ;
11
10
import java .awt .event .WindowAdapter ;
12
11
import java .awt .event .WindowEvent ;
13
- import java .util .List ;
14
12
15
13
@ SuppressWarnings ("serial" )
16
14
public abstract class AbstractMonitor extends JFrame implements ActionListener {
@@ -85,7 +83,7 @@ public void actionPerformed(ActionEvent ae) {
85
83
suspend ();
86
84
}
87
85
} else {
88
- if (closed && ( Editor .isUploading () == false )) {
86
+ if (closed && ! Editor .isUploading ()) {
89
87
resume (boardPort );
90
88
}
91
89
}
Original file line number Diff line number Diff line change 23
23
24
24
import java .awt .Color ;
25
25
import java .awt .event .ActionEvent ;
26
- import java .awt .event .ActionListener ;
27
26
import java .awt .event .KeyAdapter ;
28
27
import java .awt .event .KeyEvent ;
29
28
You can’t perform that action at this time.
0 commit comments