Remove spurious code.

This commit is contained in:
2017-05-16 05:24:01 +01:00
parent 63a2b16c32
commit 0c872b5147
2 changed files with 0 additions and 22 deletions

View File

@@ -331,17 +331,6 @@ namespace osrepodbmgr.Eto
});
#endregion Set dump hardware table
GridColumn fileColumn = new GridColumn
{
DataCell = new TextBoxCell { Binding = Binding.Property<DumpType, string>(r => r.Image) },
HeaderText = "File"
};
GridColumn sizeColumn = new GridColumn
{
DataCell = new TextBoxCell { Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString()) },
HeaderText = "Size"
};
#region Set ATA IDENTIFY table
lstAta = new ObservableCollection<DumpType>();
treeATA.Columns.Add(new GridColumn

View File

@@ -352,17 +352,6 @@ namespace osrepodbmgr.Eto
});
#endregion Set dump hardware table
GridColumn fileColumn = new GridColumn
{
DataCell = new TextBoxCell { Binding = Binding.Property<DumpType, string>(r => r.Image) },
HeaderText = "File"
};
GridColumn sizeColumn = new GridColumn
{
DataCell = new TextBoxCell { Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString()) },
HeaderText = "Size"
};
#region Set TOC table
lstTOC = new ObservableCollection<DumpType>();
treeTOC.Columns.Add(new GridColumn