Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Nov 22, 2024
1 parent a035ecd commit 55d035d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/org/apache/maven/plugins/jira/JiraReport.java
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,7 @@ public void executeReport(Locale locale) throws MavenReportException {
if (mockDownloader != null) {
issueDownloader = mockDownloader;
} else {
AdaptiveJiraDownloader downloader = new AdaptiveJiraDownloader();
downloader.setForceClassic(forceRss);
issueDownloader = downloader;
issueDownloader = new RestJiraDownloader();
}
configureIssueDownloader(issueDownloader);
issueDownloader.doExecute();
Expand Down

0 comments on commit 55d035d

Please sign in to comment.