remove an unused method from RecentFiles.cs (one that had little to no value anyway)

This commit is contained in:
adelikat 2014-08-02 23:09:01 +00:00
parent 9de16f8af3
commit 7b72a43265
1 changed files with 0 additions and 5 deletions

View File

@ -111,11 +111,6 @@ namespace BizHawk.Client.Common
return false;
}
public List<string> GetRecentListTruncated(int length)
{
return recentlist.Select(t => t.Substring(0, length)).ToList();
}
public void ToggleAutoLoad()
{
AutoLoad ^= true;