Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
simonharrer committed Dec 15, 2015
1 parent 012a608 commit da3690b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/main/java/net/sf/jabref/groups/GroupDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,6 @@ private boolean isCaseSensitive() {
* added to the new group.
*/
private void addPreviousEntries() {
...
int i = JOptionPane.showConfirmDialog(m_basePanel.frame(),
Localization.lang("Assign the original group's entries to this group?"),
Localization.lang("Change of Grouping Method"),
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/net/sf/jabref/util/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -720,8 +720,7 @@ public static boolean warnAssignmentSideEffects(AbstractGroup[] groups, BibEntry
}

// show a warning, then return
StringBuffer message = ...
new StringBuffer("This action will modify the following field(s)\n" + "in at least one entry each:\n");
StringBuffer message = new StringBuffer("This action will modify the following field(s)\n" + "in at least one entry each:\n");
for (int i = 0; i < affectedFields.size(); ++i) {
message.append(affectedFields.elementAt(i)).append("\n");
}
Expand Down

0 comments on commit da3690b

Please sign in to comment.