From 43a21307d375af869769a98006dc823ba90ebd3e Mon Sep 17 00:00:00 2001 From: "Christian P. MOMON" Date: Sat, 8 May 2021 22:42:43 +0200 Subject: [PATCH] Fixed method name. --- src/org/april/agirstatool/core/AgirStatool.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/org/april/agirstatool/core/AgirStatool.java b/src/org/april/agirstatool/core/AgirStatool.java index d06c205..5397db0 100644 --- a/src/org/april/agirstatool/core/AgirStatool.java +++ b/src/org/april/agirstatool/core/AgirStatool.java @@ -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); } {