Skip to content

Commit

Permalink
Fix NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
simonharrer committed Jan 18, 2016
1 parent 5a648bf commit e0f6ea4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public LastFocusedTabPreferences(JabRefPreferences preferences) {
}

public void setLastFocusedTab(File file) {
String filePath = null;
String filePath = "";
if (file != null) {
filePath = file.getAbsolutePath();
}
Expand Down

0 comments on commit e0f6ea4

Please sign in to comment.