This commit is contained in:
morkt 2017-02-15 22:36:45 +04:00
parent 526485c720
commit 08e5a6c69a
2 changed files with 1 additions and 2 deletions

View File

@ -38,8 +38,6 @@ namespace GARbro.GUI
/// </summary>
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"; } }

View File

@ -92,6 +92,7 @@ namespace GARbro.GUI
static string GetInnerText (XmlNode node)
{
// XXX node?.InnerText ?? ""
return node != null ? node.InnerText : "";
}