diff --git a/Periodic_3_triangulation_3/include/CGAL/Periodic_3_Delaunay_triangulation_3.h b/Periodic_3_triangulation_3/include/CGAL/Periodic_3_Delaunay_triangulation_3.h index 8bb160d07d2..5033e6329bd 100644 --- a/Periodic_3_triangulation_3/include/CGAL/Periodic_3_Delaunay_triangulation_3.h +++ b/Periodic_3_triangulation_3/include/CGAL/Periodic_3_Delaunay_triangulation_3.h @@ -926,17 +926,8 @@ Periodic_3_Delaunay_triangulation_3:: move_point(Vertex_handle v, const Point& p) { CGAL_triangulation_expensive_precondition(is_vertex(v)); - // Remember an incident vertex to restart - // the point location after the removal. - // Cell_handle c = v->cell(); - //Vertex_handle old_neighbor = c->vertex(c->index(v) == 0 ? 1 : 0); - // CGAL_triangulation_assertion(old_neighbor != v); - remove(v); - - if(number_of_vertices() == 0) - return insert(p); - return insert(p);//, old_neighbor->cell()); + return insert(p); } template < class Gt, class Tds >