Make DatTool methods static

This commit is contained in:
Matt Nadareski
2020-12-10 11:58:46 -08:00
parent c41f2cbed2
commit 0cfd4adc45
24 changed files with 105 additions and 148 deletions

View File

@@ -705,8 +705,7 @@ CREATE TABLE IF NOT EXISTS dat (
// Parse the Dat if possible
logger.User($"Adding from '{dat.Name}'");
DatTool dt = new DatTool();
DatFile tempdat = dt.CreateAndParse(fullpath);
DatFile tempdat = DatTool.CreateAndParse(fullpath);
// If the Dat wasn't empty, add the information
SqliteCommand slc = null;