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:
parent
b85b1b6995
commit
e896d33266
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue