You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code does not run cleanly though FindBugs because of some bugs:
In org/poly2tri/triangulation/delaunay/sweep/DTSweep.java at lines 634, 789,
the 'if(ot == null)' checks are made after 'ot' is dereferenced. This condition
can never be true because a NullPointerException would be thrown on the lines
before.
Original issue reported on code.google.com by [email protected] on 21 Jan 2015 at 12:03
The text was updated successfully, but these errors were encountered:
Yeah those two ot=null checks can be removed. I kept them just to be a reminder
of where I had to add code if I wanted to include the filling of missing
triangles during the constrained edge phase. Now the filling is done separately
before the edge phase.
I should have commented out those ot=null tests when keeping them as a reminder.
Original issue reported on code.google.com by
[email protected]
on 21 Jan 2015 at 12:03The text was updated successfully, but these errors were encountered: