186187188189190191192193194195196
// Iterate threw list of wires Iterator<IConductor> it = getConnectors().iterator(); while (it.hasNext()) { IConductor conductor = it.next(); if (conductor != null) { reconstructConnector(conductor); }