aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Goyvaerts <jonathan.goyvaerts@gmail.com>2020-01-12 18:11:45 +0100
committergdkchan <gab.dark.100@gmail.com>2020-01-12 14:11:45 -0300
commit88f78ae6c83def8700235e153099190cc4cef890 (patch)
treed66d66086b5dd6ac4fd36e121230fe14482b73a7
parente348f95495d3af9742010b1e44a2c3d7f30dba1a (diff)
Get rid of unused class AboutInfo (#882)
-rw-r--r--Ryujinx/Ui/AboutInfo.cs9
-rw-r--r--Ryujinx/Ui/AboutWindow.cs2
2 files changed, 0 insertions, 11 deletions
diff --git a/Ryujinx/Ui/AboutInfo.cs b/Ryujinx/Ui/AboutInfo.cs
deleted file mode 100644
index 01e0d81b..00000000
--- 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 0332d7a4..122dcaae 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;