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:
parent
fe8aede0d0
commit
d8ed3cc27f
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue