File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
src/main/java/org/apache/maven/plugins/jira Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -154,10 +154,10 @@ protected void getProxyInfo(String jiraUrl) {
154
154
/**
155
155
* Override this method if you need to get issues for a specific Fix For.
156
156
*
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
158
158
*/
159
159
protected String getFixFor () {
160
- if (onlyCurrentVersion && useJql ) {
160
+ if (onlyCurrentVersion ) {
161
161
// Let JIRA do the filtering of the current version instead of the JIRA mojo.
162
162
// This way JIRA returns less issues and we do not run into the "nbEntriesMax" limit that easily.
163
163
Original file line number Diff line number Diff line change @@ -213,8 +213,7 @@ public class JiraReport extends AbstractChangesReport {
213
213
* <strong>Note:</strong> If you are using JIRA 4 you need to put your sort column names in the reverse order. The
214
214
* handling of this changed between JIRA 3 and JIRA 4. The current default value is suitable for JIRA 3. This may
215
215
* 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.
218
217
* </p>
219
218
*
220
219
* @since 2.0
@@ -421,8 +420,6 @@ private void configureIssueDownloader(AbstractJiraDownloader issueDownloader) {
421
420
422
421
issueDownloader .setSettings (settings );
423
422
424
- issueDownloader .setUseJql (useJql );
425
-
426
423
issueDownloader .setOnlyCurrentVersion (onlyCurrentVersion );
427
424
428
425
issueDownloader .setVersionPrefix (versionPrefix );
You can’t perform that action at this time.
0 commit comments