Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperG committed Jan 4, 2016
1 parent 37e29ef commit 67f96a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C5.Tests/arrays/SortedArrayTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2418,7 +2418,7 @@ public void RegrettablyUnsafe()
for (int i = 0; i < 10; i++)
{
a[i] = new A(tree);
t[i] = new System.Threading.Thread(new System.Threading.ThreadStart(a[i].traverse));
t[i] = new System.Threading.Thread(new System.Threading.ThreadStart(() => a[i].traverse()));
}

for (int i = 0; i < 10; i++)
Expand Down

0 comments on commit 67f96a8

Please sign in to comment.