ItEr60S04ValidacionEProbasFuncionaisItEr59S04: [Bug #498] Delete a redundand function call.

The call to isLimitingAndHasDayAssignments() is already done from inside canBeExplicitlyMoved().
This commit is contained in:
Jacobo Aragunde Pérez 2010-06-15 12:07:15 +02:00 committed by Javier Moran Rua
parent 6d92362f96
commit 1e148349e2

View file

@ -389,8 +389,7 @@ public class LeftTasksTreeRow extends GenericForwardComposer {
private boolean canChangeStartDate() {
return disabilityConfiguration.isMovingTasksEnabled()
&& task.canBeExplicitlyMoved()
&& !task.isLimitingAndHasDayAssignments();
&& task.canBeExplicitlyMoved();
}
private boolean canChangeEndDate() {