diff --git a/eeschema/netlist_exporters/netlist_exporter_pspice.cpp b/eeschema/netlist_exporters/netlist_exporter_pspice.cpp index 5e0b3b2055..266b6f5be0 100644 --- a/eeschema/netlist_exporters/netlist_exporter_pspice.cpp +++ b/eeschema/netlist_exporters/netlist_exporter_pspice.cpp @@ -154,15 +154,6 @@ bool NETLIST_EXPORTER_PSPICE::Format( OUTPUTFORMATTER* aFormatter, unsigned aCtl // unescape net names that contain a escaped sequence ("{slash}"): netName = UnescapeString( netName ); - // Add quotes to nets containing slashes. This isn't added to ReplaceForbidenChars - // because this is only necessary for file writing; nets with slashes can be - // handled by ngspice after loading. - if( netName.Contains( "/" ) ) - { - netName.Prepend( '"' ); - netName.Append( '"' ); - } - // Borrow LTSpice's nomenclature for unconnected nets if( netName.IsEmpty() ) netName = wxString::Format( wxT( "NC_%.2u" ), NC_counter++ );