[Bug #906] Remove some pending comments

FEA: ItEr75S04BugFixing
This commit is contained in:
Manuel Rego Casasnovas 2011-10-26 12:52:57 +02:00
parent 8f8f90ebd6
commit bb5ba87a6a
2 changed files with 0 additions and 4 deletions

View file

@ -142,7 +142,6 @@ public class AggregateOfResourceAllocations {
public IntraDayDate getStart() {
if (isEmpty()) {
// FIXME Review Bug #906
throw new IllegalStateException("the aggregate is empty");
}
return getAllocationsSortedByStartDate().get(0).getIntraDayStartDate();
@ -162,7 +161,6 @@ public class AggregateOfResourceAllocations {
*/
public IntraDayDate getEnd() {
if (isEmpty()) {
// FIXME Review Bug #906
throw new IllegalStateException("the aggregate is empty");
}
IntraDayDate result = null;

View file

@ -100,7 +100,6 @@ public class AdvancedAllocationTabCreator {
@Override
public LocalDate getStart() {
if (aggregate.isEmpty()) {
// FIXME Review Bug #906
LOG.info("the aggregate for task " + task.getName()
+ " is empty");
return task.getStartAsLocalDate();
@ -111,7 +110,6 @@ public class AdvancedAllocationTabCreator {
@Override
public LocalDate getEnd() {
if (aggregate.isEmpty()) {
// FIXME Review Bug #906
LOG.info("the aggregate for task " + task.getName()
+ " is empty");
return task.getEndAsLocalDate();