parent
8f8f90ebd6
commit
bb5ba87a6a
2 changed files with 0 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue