From 9b792ea431e7be1d56df9ebd3cee714d6f7c8e35 Mon Sep 17 00:00:00 2001 From: Michael Krisper <michael.krisper@tugraz.at> Date: Thu, 7 Jul 2022 15:34:07 +0200 Subject: [PATCH] Removed check for XML-Elements Angledrive and Retarder: An object with respective Type "None" should be returned in case of "None" --- .../XMLDeclarationComponentsDataProvider.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/VectoCore/VectoCore/InputData/FileIO/XML/Declaration/DataProvider/XMLDeclarationComponentsDataProvider.cs b/VectoCore/VectoCore/InputData/FileIO/XML/Declaration/DataProvider/XMLDeclarationComponentsDataProvider.cs index ef230ebba4..fabc32df8e 100644 --- a/VectoCore/VectoCore/InputData/FileIO/XML/Declaration/DataProvider/XMLDeclarationComponentsDataProvider.cs +++ b/VectoCore/VectoCore/InputData/FileIO/XML/Declaration/DataProvider/XMLDeclarationComponentsDataProvider.cs @@ -191,16 +191,6 @@ namespace TUGraz.VectoCore.InputData.FileIO.XML.Declaration.DataProvider IAuxiliariesDeclarationInputData IVehicleComponentsDeclaration.AuxiliaryInputData => null; - #region Overrides of XMLDeclarationComponentsDataProviderV10 - - public override IAngledriveInputData AngledriveInputData => - ElementExists(XMLNames.Component_Angledrive) ? base.AngledriveInputData : null; - - public override IRetarderInputData RetarderInputData => - ElementExists(XMLNames.Component_Retarder) ? base.RetarderInputData : null; - - #endregion - public override IBusAuxiliariesDeclarationData BusAuxiliaries => _busAuxiliaries ?? (_busAuxiliaries = ComponentReader.BusAuxiliariesInputData); -- GitLab