-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
7 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,8 +30,8 @@ | |
import org.apache.maven.settings.Settings; | ||
|
||
/** | ||
* Abstract API, more or less, to retrieving issue information from JIRA. Intended to have subclasses for the old (RSS) | ||
* and new (REST) ways of doing things. | ||
* Abstract API, more or less, to retrieve issue information from JIRA. Has a subclass for | ||
* new (REST) ways of doing things. | ||
* | ||
* @author [email protected] | ||
* @author [email protected] | ||
|
@@ -91,12 +91,6 @@ public abstract class AbstractJiraDownloader { | |
/** The maven settings. */ | ||
protected Settings settings; | ||
|
||
/** | ||
* Use JQL, JIRA query language, instead of URL parameter based queries. Note that this is down here to make it | ||
* easier for the mojo to deal with both new and old flavors. | ||
*/ | ||
protected boolean useJql; | ||
|
||
/** Filter the JIRA query based on the current version */ | ||
protected boolean onlyCurrentVersion; | ||
|
||
|
@@ -337,14 +331,6 @@ public void setSettings(Settings settings) { | |
this.settings = settings; | ||
} | ||
|
||
public boolean isUseJql() { | ||
return useJql; | ||
} | ||
|
||
public void setUseJql(boolean useJql) { | ||
this.useJql = useJql; | ||
} | ||
|
||
public boolean isOnlyCurrentVersion() { | ||
return onlyCurrentVersion; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters