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;
}