From 756d8e519affe4389ecb61b762aa20309e1d61ed Mon Sep 17 00:00:00 2001 From: Parnic Date: Wed, 30 Nov 2022 20:40:00 -0600 Subject: [PATCH] Don't process twice if the file exists on disk --- src/Util.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Util.cs b/src/Util.cs index 3ff6789..2ae75a8 100644 --- a/src/Util.cs +++ b/src/Util.cs @@ -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,"