Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 04e66da8 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

bugfix: revert commit 63d498 for parsing json data

parent f68ae5da
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ namespace TUGraz.VectoCore.InputData.FileIO.JSON
public override PredictiveCruiseControlType PredictiveCruiseControl
{
get {
return PredictiveCruiseControlTypeHelper.Parse(Body.GetEx<string>("PredictiveCruiseControl"));
return Body.GetEx<string>("PredictiveCruiseControl").ParseEnum<PredictiveCruiseControlType>();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment