@@ -165,7 +165,7 @@ public Map<String, ContainerService> getServices() {
165
165
return this .services ;
166
166
}
167
167
168
- this .services = new HashMap <String , ContainerService >();
168
+ this .services = new TreeMap <String , ContainerService >(String . CASE_INSENSITIVE_ORDER );
169
169
170
170
if (this .sources .contains (Source .COMPILER )) {
171
171
for (Map .Entry <String , String > entry : ServiceXmlParserFactory .getInstance (project , XmlServiceParser .class ).getServiceMap ().getMap ().entrySet ()) {
@@ -194,7 +194,7 @@ public Map<String, ContainerService> getServices() {
194
194
195
195
private Map <String , ContainerService > convertIndexToService (String serviceName , List <String []> serviceDefinitions ) {
196
196
197
- Map <String , ContainerService > serviceMap = new HashMap <String , ContainerService >();
197
+ Map <String , ContainerService > serviceMap = new TreeMap <String , ContainerService >(String . CASE_INSENSITIVE_ORDER );
198
198
199
199
for (String [] serviceDefinitionArray : serviceDefinitions ) {
200
200
@@ -259,7 +259,7 @@ public Set<String> convertClassNameToServices(@NotNull String fqnClassName) {
259
259
260
260
private Set <String > getNames () {
261
261
262
- Set <String > serviceNames = new HashSet <String >();
262
+ Set <String > serviceNames = new TreeSet <String >(String . CASE_INSENSITIVE_ORDER );
263
263
264
264
if (this .sources .contains (Source .COMPILER )) {
265
265
serviceNames .addAll (ServiceXmlParserFactory .getInstance (project , XmlServiceParser .class ).getServiceMap ().getMap ().keySet ());
@@ -343,7 +343,7 @@ private Map<String, ContainerParameter> getParameters() {
343
343
return this .containerParameterMap ;
344
344
}
345
345
346
- this .containerParameterMap = new HashMap <String , ContainerParameter >();
346
+ this .containerParameterMap = new TreeMap <String , ContainerParameter >(String . CASE_INSENSITIVE_ORDER );
347
347
348
348
if (this .sources .contains (Source .COMPILER )) {
349
349
for (Map .Entry <String , String > Entry : ServiceXmlParserFactory .getInstance (project , ParameterServiceParser .class ).getParameterMap ().entrySet ()) {
@@ -384,7 +384,7 @@ private Set<String> getNames() {
384
384
return this .containerParameterMap .keySet ();
385
385
}
386
386
387
- Set <String > parameterNames = new HashSet <String >();
387
+ Set <String > parameterNames = new TreeSet <String >(String . CAS
8000
E_INSENSITIVE_ORDER );
388
388
389
389
if (this .sources .contains (Source .COMPILER )) {
390
390
parameterNames .addAll (ServiceXmlParserFactory .getInstance (project , ParameterServiceParser .class ).getParameterMap ().keySet ());
0 commit comments