Skip to content

Commit

Permalink
Minor renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-kolb committed Mar 10, 2016
1 parent 046e2e7 commit 23fcbc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/sf/jabref/gui/BasePanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -2027,10 +2027,10 @@ public void stringsClosing() {

public void changeTypeOfSelectedEntries(String newType) {
List<BibEntry> bes = mainTable.getSelectedEntries();
changeTypeOfSelectedEntries(bes, newType);
changeType(bes, newType);
}

private void changeTypeOfSelectedEntries(List<BibEntry> entries, String newType) {
private void changeType(List<BibEntry> entries, String newType) {
if ((entries == null) || (entries.isEmpty())) {
LOGGER.error("At least one entry must be selected to be able to change the type.");
return;
Expand Down

0 comments on commit 23fcbc2

Please sign in to comment.