File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/walkingkooka/j2cl/java/util/timezone/annotationprocessor Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 19
19
20
20
import walkingkooka .collect .map .Maps ;
21
21
import walkingkooka .collect .set .Sets ;
22
+ import walkingkooka .collect .set .SortedSets ;
22
23
import walkingkooka .j2cl .java .io .string .StringDataInputDataOutput ;
23
24
import walkingkooka .j2cl .java .util .locale .support .LocaleSupport ;
24
25
import walkingkooka .j2cl .java .util .timezone .zonerulesreader .org .threeten .bp .zone .ZoneRules ;
@@ -143,7 +144,7 @@ static Set<String> timezoneIds(final String filter) {
143
144
final Predicate <String > predicate = WalkingkookaLanguageTag .filter (filter );
144
145
return Arrays .stream (TimeZone .getAvailableIDs ())
145
146
.filter (predicate )
146
- .collect (Collectors .toCollection (Sets :: sorted ));
147
+ .collect (Collectors .toCollection (SortedSets :: tree ));
147
148
}
148
149
149
150
static void generate (final Set <Locale > locales ,
You can’t perform that action at this time.
0 commit comments