Comment should be null default

This commit is contained in:
Matt Nadareski
2020-08-24 14:28:53 -07:00
parent 80874d40d7
commit 92716402d9
2 changed files with 0 additions and 3 deletions

View File

@@ -140,7 +140,6 @@ namespace SabreTools.Library.DatFiles
Machine machine = new Machine
{
Name = reader.GetAttribute("name"),
Comment = string.Empty,
Description = reader.GetAttribute("name"),
CloneOf = reader.GetAttribute("cloneof"),
RomOf = reader.GetAttribute("romof"),

View File

@@ -315,8 +315,6 @@ namespace SabreTools.Library.DatFiles
RebuildTo = reader.GetAttribute("rebuildto"),
Runnable = reader.GetAttribute("runnable").AsRunnable(), // Used by older DATs
Comment = string.Empty,
CloneOf = reader.GetAttribute("cloneof"),
RomOf = reader.GetAttribute("romof"),
SampleOf = reader.GetAttribute("sampleof"),