ctucx.git: oeffisearch

[nimlang] fast and simple tripplanner

commit 1ff5df5a5dbe12cbfa71699c001e2c2c68ef14eb
parent c4c3a3ab458546f77291c120326b9f62b984d6bc
Author: Milan Pässler <me@pbb.lc>
Date: Fri, 7 Feb 2020 19:33:36 +0100

remove dos lineendings
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/backend/hafas/parse/stopover.nim b/src/backend/hafas/parse/stopover.nim
@@ -6,14 +6,14 @@ import json
 proc parseStopoverPart(common: CommonData, mode: string, h: HafasStopParams): StopoverPart =
   
   if (mode != "arrival"):
-    result.plannedPlatform = h.dPlatfS
-    result.prognosedPlatform = h.dPlatfR
-    result.plannedTime  = parseDate(common, h.dTimeS, h.dTZOffset)
-    result.prognosedTime = parseDate(common, h.dTimeR, h.dTZOffset)
+    result.plannedPlatform = h.dPlatfS
+    result.prognosedPlatform = h.dPlatfR
+    result.plannedTime  = parseDate(common, h.dTimeS, h.dTZOffset)
+    result.prognosedTime = parseDate(common, h.dTimeR, h.dTZOffset)
   else:
-    result.plannedPlatform   = h.aPlatfS
-    result.prognosedPlatform = h.aPlatfR
-    result.plannedTime       = parseDate(common, h.aTimeS, h.aTZOffset)
+    result.plannedPlatform   = h.aPlatfS
+    result.prognosedPlatform = h.aPlatfR
+    result.plannedTime       = parseDate(common, h.aTimeS, h.aTZOffset)
     result.prognosedTime     = parseDate(common, h.aTimeR, h.aTZOffset)
 
 proc mkParseStopover*(common: CommonData): proc =