Skip to content
This repository was archived by the owner on Jun 30, 2023. It is now read-only.
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Hide .Object from the introspection API in the debugger
  • Loading branch information
kzu committed Mar 11, 2018
commit 5a2a9b7ccb79765fc79a5d0309e332a9b9288ef7
2 changes: 1 addition & 1 deletion src/Moq/Moq.Sdk/DefaultMock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ public DefaultMock(IStunt stunt)
public IList<IMethodInvocation> Invocations { get; } = new List<IMethodInvocation>();

/// <inheritdoc />
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
public object Object => stunt;

//[DebuggerDisplay("", Name = "State", Type = nameof(MockState))]
/// <inheritdoc />
public MockState State { get; } = new MockState();

Expand Down