Skip to content

Commit bebbb90

Browse files
committed
Rename milestone vars to match the docs
1 parent 1105f47 commit bebbb90

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/gitlab4j/api/models/IssueFilter.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -460,8 +460,8 @@ public IssueFilter withoutIterationTitle(String iterationTitle) {
460460
* @param milestoneId the id of the milestone to add to the filter
461461
* @return the reference to this IssueFilter instance
462462
*/
463-
public IssueFilter withoutMilestoneId(Long iterationId) {
464-
return withNot(IssueField.MILESTONE_ID, iterationId);
463+
public IssueFilter withoutMilestoneId(Long milestoneId) {
464+
return withNot(IssueField.MILESTONE_ID, milestoneId);
465465
}
466466

467467
/**
@@ -470,8 +470,8 @@ public IssueFilter withoutMilestoneId(Long iterationId) {
470470
* @param milestone the title of the milestone to add to the filter
471471
* @return the reference to this IssueFilter instance
472472
*/
473-
public IssueFilter withoutMilestone(String iterationTitle) {
474-
return withNot(IssueField.MILESTONE, iterationTitle);
473+
public IssueFilter withoutMilestone(String milestone) {
474+
return withNot(IssueField.MILESTONE, milestone);
475475
}
476476

477477
/*- params generator -*/

0 commit comments

Comments
 (0)