C#: Remove unused field

This commit is contained in:
Tom Hvitved
2020-06-30 13:28:04 +02:00
parent 498ee9b5f5
commit 398a95c65f

View File

@@ -80,11 +80,9 @@ namespace Semmle.Autobuild.CSharp.Tests
}
public IDictionary<string, bool> DirectoryExists = new Dictionary<string, bool>();
public IList<string> DirectoryExistsIn = new List<string>();
bool IBuildActions.DirectoryExists(string dir)
{
DirectoryExistsIn.Add(dir);
if (DirectoryExists.TryGetValue(dir, out var ret))
return ret;
throw new ArgumentException("Missing DirectoryExists " + dir);