Skip to content

Commit

Permalink
Remove debug spew.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne committed Jul 27, 2018
1 parent 50e0554 commit 06d7410
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/xharness/ProjectFileExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -848,11 +848,8 @@ public static void ResolveAllPaths (this XmlDocument csproj, string project_path
// entries after index 2 is a list of values to filter the attribute value against.
var found = kvp.Length == 2;
var skipLogicalName = kvp.Length > 2;
for (var i = 2; i < kvp.Length; i++) {
if (a.Value.Contains ("Sync"))
Console.WriteLine ("STOP");
for (var i = 2; i < kvp.Length; i++)
found |= a.Value == kvp [i];
}
if (!found)
continue;

Expand Down

0 comments on commit 06d7410

Please sign in to comment.