ItEr30S17ValidacionEProbasFuncionais: Removing exception throwing. bug #48

This commit is contained in:
Óscar González Fernández 2009-10-16 16:05:19 +02:00
parent 4fa9ad309f
commit c3e9e4fbff

View file

@ -82,8 +82,6 @@ public class LoadPeriod {
public int compare(LoadPeriod o1, LoadPeriod o2) {
if (o1.overlaps(o2)) {
LOG.warn(o1 + " overlaps with " + o2);
throw new IllegalArgumentException(o1 + " overlaps with "
+ o2);
}
int comparison = compareLocalDates(o1.start, o2.start);
if (comparison != 0)