File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28174,7 +28174,7 @@ public:
2817428174 foreach (winName; windowsNames)
2817528175 {
2817628176 auto tzName = windowsTZNameToTZDatabaseName(winName);
28177- if(tzName !is null && tzName.startsWith(subName))
28177+ if (tzName !is null && tzName.startsWith(subName))
2817828178 retval.put(tzName);
2817928179 }
2818028180
@@ -31586,7 +31586,7 @@ version(Windows) version(UpdateWindowsTZTranslations) deprecated @system unittes
3158631586{
3158731587 import std.stdio : stderr;
3158831588
31589- foreach(tzName; TimeZone.getInstalledTZNames())
31589+ foreach (tzName; TimeZone.getInstalledTZNames())
3159031590 {
3159131591 if (tzDatabaseNameToWindowsTZName(tzName) is null)
3159231592 stderr.writeln("Missing TZName to Windows translation: ", tzName);
@@ -31766,7 +31766,7 @@ version(Windows) version(UpdateWindowsTZTranslations) deprecated @system unittes
3176631766{
3176731767 import std.stdio : stderr;
3176831768
31769- foreach(winName; WindowsTimeZone.getInstalledTZNames())
31769+ foreach (winName; WindowsTimeZone.getInstalledTZNames())
3177031770 {
3177131771 if (windowsTZNameToTZDatabaseName(winName) is null)
3177231772 stderr.writeln("Missing Windows to TZName translation: ", winName);
You can’t perform that action at this time.
0 commit comments