From 88f78ae6c83def8700235e153099190cc4cef890 Mon Sep 17 00:00:00 2001 From: Jonathan Goyvaerts Date: Sun, 12 Jan 2020 18:11:45 +0100 Subject: [PATCH] Get rid of unused class AboutInfo (#882) --- Ryujinx/Ui/AboutInfo.cs | 9 --------- Ryujinx/Ui/AboutWindow.cs | 2 -- 2 files changed, 11 deletions(-) delete mode 100644 Ryujinx/Ui/AboutInfo.cs diff --git a/Ryujinx/Ui/AboutInfo.cs b/Ryujinx/Ui/AboutInfo.cs deleted file mode 100644 index 01e0d81b57..0000000000 --- a/Ryujinx/Ui/AboutInfo.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Ryujinx.Ui -{ - internal struct AboutInfo - { - public string InstallVersion; - public string InstallCommit; - public string InstallBranch; - } -} \ No newline at end of file diff --git a/Ryujinx/Ui/AboutWindow.cs b/Ryujinx/Ui/AboutWindow.cs index 0332d7a48b..122dcaae1f 100644 --- a/Ryujinx/Ui/AboutWindow.cs +++ b/Ryujinx/Ui/AboutWindow.cs @@ -13,8 +13,6 @@ namespace Ryujinx.Ui { public class AboutWindow : Window { - private static AboutInfo AboutInformation { get; set; } - #pragma warning disable CS0649 #pragma warning disable IDE0044 [GUI] Window _aboutWin;