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) {
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
Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments