Remove no longer needed method

FEA: ItEr62S05BugFixing
This commit is contained in:
Óscar González Fernández 2010-10-25 16:50:53 +02:00
parent fa7d860cc8
commit 364e98c958

View file

@ -543,16 +543,6 @@ public abstract class TaskElement extends BaseEntity {
public abstract boolean isMilestone();
public Integer getTotalHoursAssignedCalculated() {
int result = 0;
for (ResourceAllocation<?> resourceAllocation : getSatisfiedResourceAllocations()) {
for (DayAssignment each : resourceAllocation.getAssignments()) {
result += each.getHours();
}
}
return result;
}
public Boolean isSimplifiedAssignedStatusCalculationEnabled() {
return simplifiedAssignedStatusCalculationEnabled;
}