Updated permission debuggerdisplays

This commit is contained in:
RogueException
2016-06-12 20:35:16 -03:00
parent 031d178303
commit c9ab158e48
3 changed files with 4 additions and 4 deletions

View File

@@ -131,6 +131,6 @@ namespace Discord
}
public override string ToString() => RawValue.ToString();
private string DebuggerDisplay => $"{RawValue} ({string.Join(", ", ToList())})";
private string DebuggerDisplay => $"{string.Join(", ", ToList())}";
}
}

View File

@@ -143,6 +143,6 @@ namespace Discord
}
public override string ToString() => RawValue.ToString();
private string DebuggerDisplay => $"{RawValue} ({string.Join(", ", ToList())})";
private string DebuggerDisplay => $"{string.Join(", ", ToList())}";
}
}

View File

@@ -138,7 +138,7 @@ namespace Discord
public override string ToString() => $"Allow {AllowValue}, Deny {DenyValue}";
private string DebuggerDisplay =>
$"Allow {AllowValue} ({string.Join(", ", ToAllowList())})\n" +
$"Deny {DenyValue} ({string.Join(", ", ToDenyList())})";
$"Allow {string.Join(", ", ToAllowList())}, " +
$"Deny {string.Join(", ", ToDenyList())}";
}
}