From 08e5a6c69aca2a6a525e0297217a4204f10e8d81 Mon Sep 17 00:00:00 2001 From: morkt Date: Wed, 15 Feb 2017 22:36:45 +0400 Subject: [PATCH] misc. --- GUI/App.xaml.cs | 2 -- GUI/GarUpdate.cs | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/GUI/App.xaml.cs b/GUI/App.xaml.cs index 4395960b..c6183920 100644 --- a/GUI/App.xaml.cs +++ b/GUI/App.xaml.cs @@ -38,8 +38,6 @@ namespace GARbro.GUI /// public partial class App : Application { - const StringComparison StringIgnoreCase = StringComparison.OrdinalIgnoreCase; - public static string Name { get { return "GARbro"; } } public static string FormatsDat { get { return "Formats.dat"; } } diff --git a/GUI/GarUpdate.cs b/GUI/GarUpdate.cs index dfaf18cd..978d1330 100644 --- a/GUI/GarUpdate.cs +++ b/GUI/GarUpdate.cs @@ -92,6 +92,7 @@ namespace GARbro.GUI static string GetInnerText (XmlNode node) { + // XXX node?.InnerText ?? "" return node != null ? node.InnerText : ""; }