Fixed method name.

This commit is contained in:
Christian P. MOMON 2021-05-08 22:42:43 +02:00
parent 349a378f46
commit 43a21307d3
1 changed files with 3 additions and 3 deletions

View File

@ -246,7 +246,7 @@ public class AgirStatool
* @throws AgirStatoolException * @throws AgirStatoolException
* the agir statool exception * the agir statool exception
*/ */
public Issues fetchIssue(final Project project) throws AgirStatoolException public Issues fetchIssues(final Project project) throws AgirStatoolException
{ {
Issues result; Issues result;
@ -896,7 +896,7 @@ public class AgirStatool
// Fill created and concluded issues history. // Fill created and concluded issues history.
{ {
{ {
Issues issues = fetchIssue(result); Issues issues = fetchIssues(result);
result.issues().addAll(issues); result.issues().addAll(issues);
} }
{ {
@ -916,7 +916,7 @@ public class AgirStatool
if (project.hasIssue()) if (project.hasIssue())
{ {
{ {
Issues issues = fetchIssue(project); Issues issues = fetchIssues(project);
project.issues().addAll(issues); project.issues().addAll(issues);
} }
{ {