*Reported by anonymous on 2004-09-27 12:13 UTC
LIne 179:
if (i >= size) return;
Interval x = (Interval) intervalls.elementAt(i+1);
If the size is 1 and i is 0, Java continues into the
next line and trys to get the Element at position 1.
That creates a ArrayIndexOutOfBounce!
*Reported by anonymous on 2004-09-27 12:13 UTC
LIne 179:
if (i >= size) return;
Interval x = (Interval) intervalls.elementAt(i+1);
If the size is 1 and i is 0, Java continues into the
next line and trys to get the Element at position 1.
That creates a ArrayIndexOutOfBounce!