Open GoogleCodeExporter opened 9 years ago
The error seems to be an out of bounds exceptions coming from FlotDraw.29:1298
adding a try/catch around the if statement seems to fix the problem
try {
if(points.get(i - ps) == null ||
points.get(i) == null ||
points.get(i - ps + 1) == null ||
points.get(i + 1) == null) {
continue;
}
}
catch (IndexOutOfBoundsException e)
{
continue;
}
Original comment by nab...@gmail.com
on 23 Jun 2011 at 11:00
How do I change it since I use .jar instead of source code?
Original comment by wally...@gmail.com
on 19 Feb 2014 at 9:50
Original issue reported on code.google.com by
nab...@gmail.com
on 23 Jun 2011 at 3:55