Skip to content

Commit 398a95c

Browse files
committed
C#: Remove unused field
1 parent 498ee9b commit 398a95c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

csharp/autobuilder/Semmle.Autobuild.CSharp.Tests/BuildScripts.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,9 @@ void IBuildActions.DirectoryDelete(string dir, bool recursive)
8080
}
8181

8282
public IDictionary<string, bool> DirectoryExists = new Dictionary<string, bool>();
83-
public IList<string> DirectoryExistsIn = new List<string>();
8483

8584
bool IBuildActions.DirectoryExists(string dir)
8685
{
87-
DirectoryExistsIn.Add(dir);
8886
if (DirectoryExists.TryGetValue(dir, out var ret))
8987
return ret;
9088
throw new ArgumentException("Missing DirectoryExists " + dir);

0 commit comments

Comments
 (0)