Skip to content

Commit

Permalink
Change variable name Issue#3874
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroPerozin committed Jul 11, 2019
1 parent ec3ad69 commit 88118f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ protected Map<BibEntry, Optional<URL>> call() {
util.linkAssociatedFiles(basePanel.getSelectedEntries(), new NamedCompound(""));

for (BibEntry entry : basePanel.getSelectedEntries()) {
List<LinkedFile> l = entry.getFiles();
if (l.isEmpty()) {
List<LinkedFile> fileList = entry.getFiles();
if (fileList.isEmpty()) {
FulltextFetchers fetchers = new FulltextFetchers(Globals.prefs.getImportFormatPreferences());
downloads.put(entry, fetchers.findFullTextPDF(entry));
}
Expand Down

0 comments on commit 88118f4

Please sign in to comment.