Fixed bug in via cleanup control flow
This commit is contained in:
parent
c2af94ac03
commit
29c8ec4220
|
@ -208,6 +208,8 @@ bool TRACKS_CLEANER::clean_vias()
|
||||||
if( via->GetViaType() != VIA_THROUGH )
|
if( via->GetViaType() != VIA_THROUGH )
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
continue;
|
||||||
|
|
||||||
// Search and delete others vias at same location
|
// Search and delete others vias at same location
|
||||||
TRACK* alt_track = track->Next();
|
TRACK* alt_track = track->Next();
|
||||||
|
@ -219,7 +221,6 @@ bool TRACKS_CLEANER::clean_vias()
|
||||||
VIA *alt_via = dynamic_cast<VIA*>( alt_track );
|
VIA *alt_via = dynamic_cast<VIA*>( alt_track );
|
||||||
if( alt_via )
|
if( alt_via )
|
||||||
{
|
{
|
||||||
|
|
||||||
if( alt_via->GetViaType() != VIA_THROUGH )
|
if( alt_via->GetViaType() != VIA_THROUGH )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue