Remove all traces of the outdated DB merge/import

This commit is contained in:
Matt Nadareski
2016-04-28 12:43:56 -07:00
parent 13ba806a59
commit fa519036ad
4 changed files with 0 additions and 429 deletions

View File

@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using Mono.Data.Sqlite;
using System.IO;
using SabreTools.Helper;
@@ -100,20 +99,6 @@ namespace SabreTools
_author = "SabreTools";
}
/*
// Create the database of ROMs from the input DATs
SqliteConnection dbc = DBTools.InMemoryDb();
foreach (string input in _inputs)
{
_logger.Log("Adding DAT: " + input);
RomManipulation.ParseDb(input, 0, 0, _dedup, dbc, _logger);
}
// Output all DATs specified by user inputs
Output.WriteToDatFromDb(_name, _desc, _version, _date, _cat, _author, _forceunpack, _old, _diff, _ad, "", dbc, _logger);
dbc.Close();
*/
// Create a dictionary of all ROMs from the input DATs
Dictionary<string, List<RomData>> dict = new Dictionary<string, List<RomData>>();
foreach (string input in _inputs)