removed copy-paste remnants.

This commit is contained in:
morkt 2015-04-25 02:05:52 +04:00
parent 17037fd7eb
commit 0e18247492

View File

@ -1,7 +1,6 @@
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Linq; using System.Linq;
using GameRes.Formats.KiriKiri;
using GameRes.Formats.Properties; using GameRes.Formats.Properties;
using GameRes.Formats.Strings; using GameRes.Formats.Strings;
@ -19,10 +18,5 @@ namespace GameRes.Formats.GUI
if (-1 == Scheme.SelectedIndex) if (-1 == Scheme.SelectedIndex)
Scheme.SelectedIndex = Scheme.ItemsSource.Cast<object>().Count()-1; Scheme.SelectedIndex = Scheme.ItemsSource.Cast<object>().Count()-1;
} }
public ICrypt GetScheme ()
{
return Xp3Opener.GetScheme (Scheme.SelectedItem as string);
}
} }
} }