removed unnessacary curly braces

This commit is contained in:
Rohan Agrawal 2016-02-11 19:26:03 -08:00
parent 31a6a4adf0
commit 8d659b3e02
1 changed files with 1 additions and 2 deletions

View File

@ -603,9 +603,8 @@ void ROUTER_TOOL::performRouting()
else if( evt->IsAction( &ACT_EndTrack ) )
{
bool still_routing = true;
while( still_routing ) {
while( still_routing )
still_routing = m_router->FixRoute( m_endSnapPoint, m_endItem );
}
break;
}