Skip to content

Commit eb14802

Browse files
committed
fix
1 parent b0abb8a commit eb14802

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/main/java/org/apache/maven/plugins/jira/AbstractJiraDownloader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,10 @@ protected void getProxyInfo(String jiraUrl) {
154154
/**
155155
* Override this method if you need to get issues for a specific Fix For.
156156
*
157-
* @return A Fix For id or <code>null</code> if you don't have that need
157+
* @return a Fix For id or <code>null</code> if you don't have that need
158158
*/
159159
protected String getFixFor() {
160-
if (onlyCurrentVersion && useJql) {
160+
if (onlyCurrentVersion) {
161161
// Let JIRA do the filtering of the current version instead of the JIRA mojo.
162162
// This way JIRA returns less issues and we do not run into the "nbEntriesMax" limit that easily.
163163

src/main/java/org/apache/maven/plugins/jira/JiraReport.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,7 @@ public class JiraReport extends AbstractChangesReport {
213213
* <strong>Note:</strong> If you are using JIRA 4 you need to put your sort column names in the reverse order. The
214214
* handling of this changed between JIRA 3 and JIRA 4. The current default value is suitable for JIRA 3. This may
215215
* change in the future, so please configure your sort column names in an order that works for your own JIRA
216-
* version. If you use JQL, by setting the <code>useJql</code> parameter to <code>true</code>, then the order of the
217-
* fields are in normal order again. Starting with JIRA 5.1 you have to use JQL.
216+
* version.
218217
* </p>
219218
*
220219
* @since 2.0
@@ -421,8 +420,6 @@ private void configureIssueDownloader(AbstractJiraDownloader issueDownloader) {
421420

422421
issueDownloader.setSettings(settings);
423422

424-
issueDownloader.setUseJql(useJql);
425-
426423
issueDownloader.setOnlyCurrentVersion(onlyCurrentVersion);
427424

428425
issueDownloader.setVersionPrefix(versionPrefix);

0 commit comments

Comments
 (0)