mirror of https://github.com/CGAL/cgal
Unnecessary double "if" blocks
This commit is contained in:
parent
a5f9d4e3b7
commit
6ea82bbe2a
|
|
@ -1225,11 +1225,9 @@ protected:
|
|||
if (the_facet_is_in_its_cz)
|
||||
*the_facet_is_in_its_cz = false;
|
||||
|
||||
if (could_lock_zone)
|
||||
*could_lock_zone = true;
|
||||
|
||||
if (could_lock_zone)
|
||||
{
|
||||
*could_lock_zone = true;
|
||||
if (!this->try_lock_cell(d))
|
||||
{
|
||||
*could_lock_zone = false;
|
||||
|
|
|
|||
Loading…
Reference in New Issue