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 2020import java .util .regex .Matcher ;
2121import java .util .regex .Pattern ;
2222
23- import javafx .event .ActionEvent ;
2423import javafx .fxml .FXML ;
2524import javafx .scene .control .Alert ;
2625import javafx .scene .control .ButtonType ;
@@ -38,13 +37,9 @@ public class CustomOperationsListController extends OperationListController {
3837 @ Inject private InputSocket .Factory isf ;
3938 @ Inject private OutputSocket .Factory osf ;
4039
41- @ Override
42- protected void initialize () {
43- super .initialize ();
44- }
45-
4640 @ FXML
47- private void createNewPythonOperation (ActionEvent actionEvent ) {
41+ @ SuppressWarnings ("PMD.UnusedPrivateMethod" )
42+ private void createNewPythonOperation () {
4843 Dialog <String > dialog = new TextInputDialog ();
4944 dialog .getDialogPane ().setContent (new TextArea (PythonScriptFile .TEMPLATE ));
5045 dialog .setResultConverter (bt -> {
You can’t perform that action at this time.
0 commit comments