1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug #204042 : Project code templates are not presented in order

This commit is contained in:
Oleg Krasilnikov 2007-09-20 07:32:21 +00:00
parent fe8aede0d0
commit d8ed3cc27f

View file

@ -17,6 +17,7 @@ import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
@ -57,7 +58,7 @@ public class TemplateEngine {
* TemplateEngine constructor, create and initialize SharedDefaults.
*/
private TemplateEngine() {
templateInfoMap = new HashMap/*<String, List<TemplateInfo>>*/();
templateInfoMap = new LinkedHashMap/*<String, List<TemplateInfo>>*/();
initializeTemplateInfoMap();
}