Skip to content

Commit

Permalink
PMD issues
Browse files Browse the repository at this point in the history
  • Loading branch information
SamCarlberg committed Jul 26, 2016
1 parent 2af2c76 commit 22f66a7
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.Alert;
import javafx.scene.control.ButtonType;
Expand All @@ -38,13 +37,9 @@ public class CustomOperationsListController extends OperationListController {
@Inject private InputSocket.Factory isf;
@Inject private OutputSocket.Factory osf;

@Override
protected void initialize() {
super.initialize();
}

@FXML
private void createNewPythonOperation(ActionEvent actionEvent) {
@SuppressWarnings("PMD.UnusedPrivateMethod")
private void createNewPythonOperation() {
Dialog<String> dialog = new TextInputDialog();
dialog.getDialogPane().setContent(new TextArea(PythonScriptFile.TEMPLATE));
dialog.setResultConverter(bt -> {
Expand Down

0 comments on commit 22f66a7

Please sign in to comment.