1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 17:26:01 +02:00

Use linked hash map instead of hash map to reserve the config order

This commit is contained in:
Mikhail Sennikovsky 2007-05-15 15:06:33 +00:00
parent 36be849242
commit 7c46867c0b

View file

@ -13,8 +13,8 @@ package org.eclipse.cdt.managedbuilder.internal.core;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
@ -422,7 +422,7 @@ public class ManagedProject extends BuildObject implements IManagedProject, IBui
*/
public Map getConfigurationMap() {
if (configMap == null) {
configMap = new HashMap();
configMap = new LinkedHashMap();
}
return configMap;
}