1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 22:35:43 +02:00

[150115] changed the host restoration to add the property set to the correct node in the resulting tree.

This commit is contained in:
David Dykstal 2007-03-02 17:56:12 +00:00
parent eb56824abb
commit 3a5af83306

View file

@ -1,5 +1,5 @@
/********************************************************************************
* Copyright (c) 2006 IBM Corporation. All rights reserved.
* Copyright (c) 2006, 2007 IBM Corporation. All rights reserved.
* This program and the accompanying materials are made available under the terms
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
@ -128,10 +128,10 @@ public class RSEDOMImporter implements IRSEDOMImporter {
if (type.equals(IRSEDOMConstants.TYPE_CONNECTOR_SERVICE)) {
restoreConnectorService(host, child);
} else if (type.equals(IRSEDOMConstants.TYPE_PROPERTY_SET)) {
restorePropertySet(profile, child);
restorePropertySet(host, child);
}
}
return host;
}