Skip to content

Commit

Permalink
bName renamed to newName
Browse files Browse the repository at this point in the history
  • Loading branch information
antalk2 committed Feb 26, 2021
1 parent 44c1b55 commit 99cef09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/jabref/gui/openoffice/OOBibBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -1304,8 +1304,8 @@ public void unCombineCiteMarkers(List<BibDatabase> databases, OOBibStyle style)
int last = keys.size() - 1;
int i = 0;
for (String key : keys) {
String bName = getUniqueReferenceMarkName(key, OOBibBase.AUTHORYEAR_PAR);
insertReferenceMark(bName, "tmp", textCursor, true, style);
String newName = getUniqueReferenceMarkName(key, OOBibBase.AUTHORYEAR_PAR);
insertReferenceMark(newName, "tmp", textCursor, true, style);
textCursor.collapseToEnd();
if (i != last) {
textCursor.setString(" ");
Expand Down

0 comments on commit 99cef09

Please sign in to comment.