Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/main/java/org/kohsuke/github/GHRepository.java
Original file line number Diff line number Diff line change
Expand Up @@ -1603,7 +1603,9 @@ public GHIssueEvent getIssueEvent(long id) throws IOException {
* @return the issues
* @throws IOException
* the io exception
* @deprecated Use {@link #queryIssues()} instead.
*/
@Deprecated
public List<GHIssue> getIssues(GHIssueState state) throws IOException {
return queryIssues().state(state).list().toList();
}
Expand All @@ -1618,7 +1620,9 @@ public List<GHIssue> getIssues(GHIssueState state) throws IOException {
* @return the issues
* @throws IOException
* the io exception
* @deprecated Use {@link #queryIssues()} instead.
*/
@Deprecated
public List<GHIssue> getIssues(GHIssueState state, GHMilestone milestone) throws IOException {
return queryIssues().milestone(milestone == null ? "none" : "" + milestone.getNumber())
.state(state)
Expand Down
Loading