Skip to content

Commit 10af122

Browse files
committed
Fix formatting to appease travis
1 parent 89b2f56 commit 10af122

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

std/datetime.d

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)