You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The files that sometimes lie in the `zoneinfo` directory but aren't actually time zones. */
21
20
privateval tzdbUnneededFiles =setOf(
21
+
// taken from https://github.com/tzinfo/tzinfo/blob/9953fc092424d55deaea2dcdf6279943f3495724/lib/tzinfo/data_sources/zoneinfo_data_source.rb#L88C29-L97C21
22
+
"+VERSION",
23
+
"leapseconds",
24
+
"localtime",
22
25
"posix",
23
26
"posixrules",
27
+
"right",
28
+
"SECURITY",
29
+
"src",
30
+
"timeconfig",
31
+
// taken from https://github.com/HowardHinnant/date/blob/ab37c362e35267d6dee02cb47760f9e9c669d3be/src/tz.cpp#L2863-L2874
24
32
"Factory",
25
33
"iso3166.tab",
26
-
"right",
27
-
"+VERSION",
28
34
"zone.tab",
29
35
"zone1970.tab",
30
36
"tzdata.zi",
31
-
"leapseconds",
32
37
"leap-seconds.list"
33
38
)
39
+
40
+
/** If the platform has a preference for a specific timezone database path, this field contains it. */
41
+
internalexpectfundefaultTzdbPath(): String?
42
+
43
+
/** The directories checked for a valid timezone database. */
0 commit comments