Skip to content

Commit

Permalink
tz files aligned with the default TzdbZoneRulesProvider list
Browse files Browse the repository at this point in the history
  • Loading branch information
naotoj committed Sep 10, 2024
1 parent 264d577 commit 423720c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1372,7 +1372,7 @@ private static Map<Locale, String> coverageLevelsMap() throws Exception {
private static void generateTZDBShortNamesMap() throws IOException {
Files.walk(Path.of(tzDataDir), 1, FileVisitOption.FOLLOW_LINKS)
.filter(p -> p.toFile().isFile())
.filter(p -> p.getFileName().toString().matches("africa|antarctica|asia|australasia|backward|backzone|etcetera|europe|factory|northamerica|southamerica"))
.filter(p -> p.getFileName().toString().matches("africa|antarctica|asia|australasia|backward|etcetera|europe|northamerica|southamerica"))
.forEach(p -> {
try {
String zone = null;
Expand Down

0 comments on commit 423720c

Please sign in to comment.