parent
8f8f90ebd6
commit
bb5ba87a6a
2 changed files with 0 additions and 4 deletions
|
|
@ -142,7 +142,6 @@ public class AggregateOfResourceAllocations {
|
||||||
|
|
||||||
public IntraDayDate getStart() {
|
public IntraDayDate getStart() {
|
||||||
if (isEmpty()) {
|
if (isEmpty()) {
|
||||||
// FIXME Review Bug #906
|
|
||||||
throw new IllegalStateException("the aggregate is empty");
|
throw new IllegalStateException("the aggregate is empty");
|
||||||
}
|
}
|
||||||
return getAllocationsSortedByStartDate().get(0).getIntraDayStartDate();
|
return getAllocationsSortedByStartDate().get(0).getIntraDayStartDate();
|
||||||
|
|
@ -162,7 +161,6 @@ public class AggregateOfResourceAllocations {
|
||||||
*/
|
*/
|
||||||
public IntraDayDate getEnd() {
|
public IntraDayDate getEnd() {
|
||||||
if (isEmpty()) {
|
if (isEmpty()) {
|
||||||
// FIXME Review Bug #906
|
|
||||||
throw new IllegalStateException("the aggregate is empty");
|
throw new IllegalStateException("the aggregate is empty");
|
||||||
}
|
}
|
||||||
IntraDayDate result = null;
|
IntraDayDate result = null;
|
||||||
|
|
|
||||||
|
|
@ -100,7 +100,6 @@ public class AdvancedAllocationTabCreator {
|
||||||
@Override
|
@Override
|
||||||
public LocalDate getStart() {
|
public LocalDate getStart() {
|
||||||
if (aggregate.isEmpty()) {
|
if (aggregate.isEmpty()) {
|
||||||
// FIXME Review Bug #906
|
|
||||||
LOG.info("the aggregate for task " + task.getName()
|
LOG.info("the aggregate for task " + task.getName()
|
||||||
+ " is empty");
|
+ " is empty");
|
||||||
return task.getStartAsLocalDate();
|
return task.getStartAsLocalDate();
|
||||||
|
|
@ -111,7 +110,6 @@ public class AdvancedAllocationTabCreator {
|
||||||
@Override
|
@Override
|
||||||
public LocalDate getEnd() {
|
public LocalDate getEnd() {
|
||||||
if (aggregate.isEmpty()) {
|
if (aggregate.isEmpty()) {
|
||||||
// FIXME Review Bug #906
|
|
||||||
LOG.info("the aggregate for task " + task.getName()
|
LOG.info("the aggregate for task " + task.getName()
|
||||||
+ " is empty");
|
+ " is empty");
|
||||||
return task.getEndAsLocalDate();
|
return task.getEndAsLocalDate();
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue