File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
ui/src/main/java/edu/wpi/grip/ui Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change 20
20
import java .util .regex .Matcher ;
21
21
import java .util .regex .Pattern ;
22
22
23
- import javafx .event .ActionEvent ;
24
23
import javafx .fxml .FXML ;
25
24
import javafx .scene .control .Alert ;
26
25
import javafx .scene .control .ButtonType ;
@@ -38,13 +37,9 @@ public class CustomOperationsListController extends OperationListController {
38
37
@ Inject private InputSocket .Factory isf ;
39
38
@ Inject private OutputSocket .Factory osf ;
40
39
41
- @ Override
42
- protected void initialize () {
43
- super .initialize ();
44
- }
45
-
46
40
@ FXML
47
- private void createNewPythonOperation (ActionEvent actionEvent ) {
41
+ @ SuppressWarnings ("PMD.UnusedPrivateMethod" )
42
+ private void createNewPythonOperation () {
48
43
Dialog <String > dialog = new TextInputDialog ();
49
44
dialog .getDialogPane ().setContent (new TextArea (PythonScriptFile .TEMPLATE ));
50
45
dialog .setResultConverter (bt -> {
You can’t perform that action at this time.
0 commit comments