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.HashMap;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
@ -57,7 +58,7 @@ public class TemplateEngine {
|
||||||
* TemplateEngine constructor, create and initialize SharedDefaults.
|
* TemplateEngine constructor, create and initialize SharedDefaults.
|
||||||
*/
|
*/
|
||||||
private TemplateEngine() {
|
private TemplateEngine() {
|
||||||
templateInfoMap = new HashMap/*<String, List<TemplateInfo>>*/();
|
templateInfoMap = new LinkedHashMap/*<String, List<TemplateInfo>>*/();
|
||||||
initializeTemplateInfoMap();
|
initializeTemplateInfoMap();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue