Skip to content

Commit

Permalink
Remove unnecessary parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
markquintontulloch committed Feb 7, 2025
1 parent 80ece99 commit d347ca3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class GeoXrefExecutor extends LoadFileExecutor {

public void execLoad(BulkLoadFileHistory bulkLoadFileHistory) throws IOException {

BulkFMSLoad fms = ((BulkFMSLoad) bulkLoadFileHistory.getBulkLoad());
BulkFMSLoad fms = (BulkFMSLoad) bulkLoadFileHistory.getBulkLoad();

XmlMapper mapper = new XmlMapper();
List<String> entrezIds = mapper.readValue(new GZIPInputStream(new FileInputStream(bulkLoadFileHistory.getBulkLoadFile().getLocalFilePath())), ESearchResult.class).getIdList().getIds();
Expand Down

0 comments on commit d347ca3

Please sign in to comment.