Skip to content

Commit

Permalink
Correctly apply file local save order
Browse files Browse the repository at this point in the history
  • Loading branch information
lenhard committed Jan 26, 2016
1 parent 84af611 commit a19277b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/sf/jabref/exporter/FileActions.java
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ public static List<BibEntry> getSortedEntries(BibDatabase database, MetaData met
if (isSaveOperation) {
List<String> storedSaveOrderConfig = metaData
.getData(net.sf.jabref.gui.DatabasePropertiesDialog.SAVE_ORDER_CONFIG);
if (storedSaveOrderConfig != null) {
if (storedSaveOrderConfig == null) {
inOriginalOrder = true;
} else {
SaveOrderConfig saveOrderConfig = new SaveOrderConfig(storedSaveOrderConfig);
Expand Down

0 comments on commit a19277b

Please sign in to comment.