Skip to content

Commit

Permalink
Review finding 6
Browse files Browse the repository at this point in the history
  • Loading branch information
sgcr committed Sep 10, 2024
1 parent 8cafe7d commit b145d74
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/main/java/core/module/config/ModuleConfigDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ public class ModuleConfigDialog extends JDialog implements ActionListener{
private static final long serialVersionUID = -6012059855852713150L;
private IModule module;
JButton okButton;
// JButton cancelButton;

public ModuleConfigDialog(JDialog owner, IModule module){
super(owner,module.getDescription());
Expand Down Expand Up @@ -52,11 +51,7 @@ private JPanel createButtons() {
okButton = new JButton(TranslationFacility.tr("ls.button.save"));
okButton.addActionListener(this);

// cancelButton = new JButton(TranslationFacility.tr("ls.button.cancel"));
// cancelButton.addActionListener(this);

buttonPanel.add(okButton);
// buttonPanel.add(cancelButton);
return buttonPanel;
}

Expand Down

0 comments on commit b145d74

Please sign in to comment.