Skip to content

Commit

Permalink
checkstye
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed May 15, 2022
1 parent c0e0cb0 commit 6dc4646
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/org/jabref/preferences/JabRefPreferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@
import org.jabref.model.entry.types.EntryType;
import org.jabref.model.entry.types.EntryTypeFactory;
import org.jabref.model.metadata.SaveOrderConfig;
import org.jabref.model.pdf.search.SearchFieldConstants;
import org.jabref.model.push.PushToApplicationConstants;
import org.jabref.model.search.rules.SearchRules;
import org.jabref.model.strings.StringUtil;
Expand Down Expand Up @@ -2853,7 +2852,7 @@ private Set<FetcherApiKey> getFetcherKeys() {
fetcherApiKeys.add(new FetcherApiKey(
names.get(i),
// i < uses.size() ? Boolean.parseBoolean(uses.get(i)) : false
i < uses.size() && Boolean.parseBoolean(uses.get(i)),
(i < uses.size()) && Boolean.parseBoolean(uses.get(i)),
i < keys.size() ? keys.get(i) : ""));
}

Expand Down

0 comments on commit 6dc4646

Please sign in to comment.