Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 6415f55b authored by Raphael Kalchgruber's avatar Raphael Kalchgruber
Browse files

Deletion of obsolete constructor

parent 290b065c
No related branches found
No related tags found
No related merge requests found
......@@ -61,18 +61,10 @@ namespace TUGraz.VectoCore.OutputData.XML
protected readonly IManufacturerReportFactory _mrfFactory;
protected readonly ICustomerInformationFileFactory _cifFactory;
protected IDictionary<Tuple<MissionType, LoadingType>, double> _weightingFactors;
[Obsolete]
public XMLDeclarationReport(IReportWriter writer) : base(writer)
{
}
public XMLDeclarationReport(IReportWriter writer, IManufacturerReportFactory mrfFactory, ICustomerInformationFileFactory cifFactory) : base(writer)
{
_mrfFactory = mrfFactory;
......
......@@ -18,7 +18,7 @@ namespace TUGraz.VectoCore.OutputData.XML
protected IXMLMultistepIntermediateReport _multistageBusReport;
public XMLDeclarationReportMultistageBusVehicle(IReportWriter writer)
: base(writer)
: base(writer, null,null)
{
throw new NotImplementedException();
//throw new VectoException("Used here");
......
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