CHG: build fixes

(cherry picked from commit 2cd2bcec402a467c974a3106c3b1001dd4ed4ea4)
This commit is contained in:
Michal Staszewski
2011-06-21 14:34:04 +02:00
committed by Piotr Wysocki
parent cbb3211c12
commit 6ba0034f49
3 changed files with 7 additions and 4 deletions
+2 -2
View File
@@ -294,7 +294,7 @@ namespace WorkItemsGroupDemo
spinIdleTimeout.Enabled = !start;
}
private object DoNothing(object state)
private void DoNothing(WorkItemState state)
{
WorkItemState workItemState = (WorkItemState)state;
_workingStates.Add(workItemState.QueueUsageEntry, workItemState.QueueUsageEntry);
@@ -310,7 +310,7 @@ namespace WorkItemsGroupDemo
} while (_paused);
_workingStates.Remove(workItemState.QueueUsageEntry);
return null;
//return null;
}