1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-08 09:35:23 +02:00

fix for 142171. Subsystem name should always come from plugin.xml

This commit is contained in:
David McKnight 2006-06-22 18:19:26 +00:00
parent b85b1b6995
commit e896d33266

View file

@ -275,7 +275,10 @@ public class RSEDOMImporter implements IRSEDOMImporter
subSystem = factory.createSubSystemInternal(host); subSystem = factory.createSubSystemInternal(host);
} }
subSystem.setHidden(isHidden); subSystem.setHidden(isHidden);
subSystem.setName(name);
// name should always be based on the one in plugin.xml
// so commenting this out
//subSystem.setName(name);
subSystem.setHost(host); subSystem.setHost(host);
subSystem.setSubSystemConfiguration(factory); subSystem.setSubSystemConfiguration(factory);
subSystem.setWasRestored(true); subSystem.setWasRestored(true);