@@ -1 +1 @@ | |||
Subproject commit 8e13a376f641dc416491bc3b2e80abe3a57826dd | |||
Subproject commit effa1c3e6f26782a0831d59965aff6dd0f4f0608 |
@@ -97,7 +97,9 @@ public abstract class PartWireSignalBase extends Wire implements IWire, IDebugga | |||
case NORMAL: | |||
return sWire.getWireType() != WireType.BUNDLED; | |||
case INSULATED: | |||
return true; | |||
// This will remove insulated wires of OTHER colors. | |||
// Insulated wires of the same color are handled by the super call above. | |||
return sWire.getWireType() != WireType.INSULATED; | |||
case BUNDLED: | |||
return sWire.getWireType() != WireType.NORMAL; | |||
} |