Skip to content

Commit

Permalink
Merge pull request #1117 from davkean/dev/davkean/ImproveDebugging
Browse files Browse the repository at this point in the history
Unhide fields from debugger
  • Loading branch information
AArnott committed Nov 28, 2022
2 parents 1f1a1a6 + 4e94051 commit 2c72229
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/Microsoft.VisualStudio.Threading/JoinableTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,11 @@ public partial class JoinableTask : IJoinableTaskDependent
/// <summary>
/// The <see cref="JoinableTaskDependencyGraph.JoinableTaskDependentData"/> to track dependencies between tasks.
/// </summary>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private JoinableTaskDependencyGraph.JoinableTaskDependentData dependentData;

/// <summary>
/// The collections that this job is a member of.
/// </summary>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private RarelyRemoveItemSet<IJoinableTaskDependent> dependencyParents;

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public class JoinableTaskCollection : IJoinableTaskDependent, IEnumerable<Joinab
/// <summary>
/// The <see cref="JoinableTaskDependencyGraph.JoinableTaskDependentData"/> to track dependencies between tasks.
/// </summary>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private JoinableTaskDependencyGraph.JoinableTaskDependentData dependentData;

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ internal struct JoinableTaskDependentData
/// <remarks>
/// When the value in an entry is decremented to 0, the entry is removed from the map.
/// </remarks>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private Dictionary<IJoinableTaskDependent, int> childDependentNodes;

/// <summary>
Expand Down

0 comments on commit 2c72229

Please sign in to comment.