Stripped whitespace.

This commit is contained in:
Ferdinand Majerech 2014-07-19 03:50:50 +02:00
parent 69e8c71516
commit 85c5a1bdb8

View file

@ -614,7 +614,7 @@ SysTime constructTimestamp(ref Node node)
int tzHours = 0; int tzHours = 0;
if(!captures[1].empty) if(!captures[1].empty)
{ {
if(captures[1][0] == '-'){sign = -1;} if(captures[1][0] == '-') {sign = -1;}
tzHours = to!int(captures[1][1 .. $]); tzHours = to!int(captures[1][1 .. $]);
} }
auto tzMinutes = (!captures[2].empty) ? to!int(captures[2][1 .. $]) : 0; auto tzMinutes = (!captures[2].empty) ? to!int(captures[2][1 .. $]) : 0;