1
0
Fork 0

Fixed omitted parameter

master
Nikita Salnikov-Tarnovski 2014-12-27 10:58:09 +02:00
parent b86e92a0cb
commit 5c4f054ace
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ public class JiraClient {
public Issue.SearchResult searchIssues(String jql, String includedFields, String expandFields,
Integer maxResults, Integer startAt) throws JiraException {
return Issue.search(restclient, jql, includedFields, null, maxResults,
return Issue.search(restclient, jql, includedFields, expandFields, maxResults,
startAt);
}
/**