Extract out IO namespace, Part 3

This commit is contained in:
Matt Nadareski
2020-12-08 00:13:22 -08:00
parent 53f5d07ae4
commit 96f0a94b10
60 changed files with 950 additions and 1319 deletions

View File

@@ -4,7 +4,6 @@ using System.Linq;
using SabreTools.Help;
using SabreTools.IO;
using SabreTools.Library.IO;
using Microsoft.Data.Sqlite;
namespace RombaSharp.Features
@@ -38,7 +37,7 @@ namespace RombaSharp.Features
// Now, for each of these files, attempt to add the data found inside
foreach (string input in Inputs)
{
StreamReader sr = new StreamReader(FileExtensions.TryOpenRead(input));
StreamReader sr = new StreamReader(File.OpenRead(input));
// The first line should be the hash header
string line = sr.ReadLine();