Fix typo in method name
FEA: ItEr76S15OrganizingPerProjectDashboard
This commit is contained in:
parent
5422bd1a33
commit
1db0e63bc6
3 changed files with 3 additions and 3 deletions
|
|
@ -416,7 +416,7 @@ public class DashboardController extends GenericForwardComposer {
|
|||
private Map<Interval, Integer> getData() {
|
||||
if (taskCompletationData == null) {
|
||||
taskCompletationData = dashboardModel
|
||||
.calculateTaskCompletation();
|
||||
.calculateTaskCompletion();
|
||||
}
|
||||
return taskCompletationData;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -352,7 +352,7 @@ public class DashboardModel implements IDashboardModel {
|
|||
* @return
|
||||
*/
|
||||
@Override
|
||||
public Map<Interval, Integer> calculateTaskCompletation() {
|
||||
public Map<Interval, Integer> calculateTaskCompletion() {
|
||||
Map<Interval, Integer> result = new LinkedHashMap<Interval, Integer>();
|
||||
Double max, min;
|
||||
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ interface IDashboardModel {
|
|||
|
||||
Map<TaskStatusEnum, Integer> calculateTaskStatus();
|
||||
|
||||
Map<Interval, Integer> calculateTaskCompletation();
|
||||
Map<Interval, Integer> calculateTaskCompletion();
|
||||
|
||||
Map<Interval, Integer> calculateEstimationAccuracy();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue