Skip to content

Commit

Permalink
Remove unused class
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-kolb committed Mar 10, 2016
1 parent 53ad703 commit 204a73e
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions src/main/java/net/sf/jabref/gui/entryeditor/EntryEditor.java
Original file line number Diff line number Diff line change
Expand Up @@ -1387,26 +1387,6 @@ public void mouseClicked(MouseEvent evt) {
}
}

class ChangeTypeAction extends AbstractAction {

private final String changeType;

private final BasePanel changeTypePanel;


public ChangeTypeAction(EntryType type, BasePanel bp) {
super(type.getName());
this.changeType = type.getName();
changeTypePanel = bp;
}

@Override
public void actionPerformed(ActionEvent evt) {
changeTypePanel.changeType(entry, changeType);
}
}


private void warnDuplicateBibtexkey() {
panel.output(Localization.lang("Duplicate BibTeX key.")+" "+Localization.lang("Grouping may not work for this entry."));
}
Expand Down

0 comments on commit 204a73e

Please sign in to comment.