Don't process twice if the file exists on disk

This commit is contained in:
2022-11-30 20:40:00 -06:00
parent 22c89a7e0e
commit 756d8e519a

View File

@ -46,6 +46,8 @@ internal static class Util
{
processor(line);
}
return;
}
// typeof(Util) is not technically correct since what we need is the "default namespace,"