From 31e8ad0c0506534b439b176ef4ba3af03d8446ee Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Thu, 4 Oct 2018 23:31:34 -0700 Subject: [PATCH] clean up whitespace --- src/Discord.Net.Core/Entities/Messages/MessageApplication.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Messages/MessageApplication.cs b/src/Discord.Net.Core/Entities/Messages/MessageApplication.cs index 53503bd5f..960d1700f 100644 --- a/src/Discord.Net.Core/Entities/Messages/MessageApplication.cs +++ b/src/Discord.Net.Core/Entities/Messages/MessageApplication.cs @@ -26,21 +26,17 @@ namespace Discord /// Gets the ID of the application's icon. /// public string Icon { get; set; } - /// /// Gets the Url of the application's icon. /// public string IconUrl => $"https://cdn.discordapp.com/app-icons/{Id}/{Icon}"; - /// /// Gets the name of the application. /// public string Name { get; set; } - private string DebuggerDisplay => $"{Name} ({Id}): {Description}"; - public override string ToString() => DebuggerDisplay; }