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

Skip to content
Snippets Groups Projects
Commit 795424da authored by Harald Martini's avatar Harald Martini
Browse files

fixed output format of AverageRRC in AxleWheelsGroup

parent 261024dc
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ namespace TUGraz.VectoCore.OutputData.XML.DeclarationReports.CustomerInformation
new XElement(_cif + XMLNames.Report_Tyre_TyreCertificationNumber, axle.Tyre.CertificationNumber)));
}
averageRRC /= axleWheels.AxlesDeclaration.Count;
result.Insert(0, new XElement(_cif + "AverageRRC", averageRRC));
result.Insert(0, new XElement(_cif + "AverageRRC", averageRRC.ToXMLFormat(4)));
return result;
......
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