Netlist.cpp: remove debug lines

This commit is contained in:
jean-pierre charras 2010-11-08 15:43:16 +01:00
parent a12b80f6d2
commit 75e613f6af
1 changed files with 1 additions and 4 deletions

View File

@ -405,8 +405,7 @@ static NETLIST_OBJECT* FindBestNetName( NETLIST_OBJECT_LIST& aLabelItemBuffer )
}
if( candidate_priority > item_priority )
{
printf(" prio (%d %d) ", item_priority, candidate_priority );
item = candidate;
item = candidate;
item_priority = candidate_priority;
}
else if( candidate_priority == item_priority )
@ -420,12 +419,10 @@ static NETLIST_OBJECT* FindBestNetName( NETLIST_OBJECT_LIST& aLabelItemBuffer )
candidate->m_SheetList.Path().Length() < item->m_SheetList.Path().Length() )
{
item = candidate;
printf(" path (pr %d) ", item_priority);
}
else if( candidate->m_Label.Cmp( item->m_Label ) < 0 )
{
item = candidate;
printf(" alpha ");
}
}
}