mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Reduce Linq usage across entire project
This commit is contained in:
@@ -45,7 +45,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(File.OpenRead(input));
|
||||
var sr = new StreamReader(File.OpenRead(input));
|
||||
|
||||
// The first line should be the hash header
|
||||
string? line = sr.ReadLine();
|
||||
|
||||
Reference in New Issue
Block a user