diff --git a/eeschema/sch_plugins/eagle/sch_eagle_plugin.cpp b/eeschema/sch_plugins/eagle/sch_eagle_plugin.cpp index 9d04d4690d..4ab0de05ad 100644 --- a/eeschema/sch_plugins/eagle/sch_eagle_plugin.cpp +++ b/eeschema/sch_plugins/eagle/sch_eagle_plugin.cpp @@ -1461,14 +1461,8 @@ bool SCH_EAGLE_PLUGIN::loadSymbol( wxXmlNode* aSymbolNode, std::unique_ptrSetNumberTextSize( 0 ); } - // Eagle does not connect multiple NC pins together when they are stacked. - // KiCad will do this for pins that are coincident. We opt here for correct - // schematic netlist and leave out the multiple NC pins when stacked. for( unsigned i = 0; i < pads.GetCount(); i++ ) { - if( pin->GetType() == ELECTRICAL_PINTYPE::PT_NC && i > 0 ) - break; - LIB_PIN* apin = new LIB_PIN( *pin ); wxString padname( pads[i] );