don't send DebuggerDisplay over the wire, guise

This commit is contained in:
Brendan Forster
2014-02-20 21:18:04 +11:00
parent b216c69377
commit 83837cbeaa
@@ -32,6 +32,7 @@ namespace Octokit
static List<PropertyParameter> GetPropertyParametersForType(Type type)
{
return type.GetAllProperties()
.Where(p => p.Name != "DebuggerDisplay")
.Select(p => new PropertyParameter(p))
.ToList();
}