Fixed method name.
This commit is contained in:
parent
349a378f46
commit
43a21307d3
1 changed files with 3 additions and 3 deletions
|
@ -246,7 +246,7 @@ public class AgirStatool
|
|||
* @throws AgirStatoolException
|
||||
* the agir statool exception
|
||||
*/
|
||||
public Issues fetchIssue(final Project project) throws AgirStatoolException
|
||||
public Issues fetchIssues(final Project project) throws AgirStatoolException
|
||||
{
|
||||
Issues result;
|
||||
|
||||
|
@ -896,7 +896,7 @@ public class AgirStatool
|
|||
// Fill created and concluded issues history.
|
||||
{
|
||||
{
|
||||
Issues issues = fetchIssue(result);
|
||||
Issues issues = fetchIssues(result);
|
||||
result.issues().addAll(issues);
|
||||
}
|
||||
{
|
||||
|
@ -916,7 +916,7 @@ public class AgirStatool
|
|||
if (project.hasIssue())
|
||||
{
|
||||
{
|
||||
Issues issues = fetchIssue(project);
|
||||
Issues issues = fetchIssues(project);
|
||||
project.issues().addAll(issues);
|
||||
}
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue