IMovie - remove the unused GetInputLog() property and also from implementing classes. I guess savestate code that was using it got refactored at some point making it unused.

This commit is contained in:
adelikat 2017-05-17 13:26:14 -05:00
parent cf15eb8950
commit 85f78b358d
3 changed files with 0 additions and 28 deletions

View File

@ -1,7 +1,6 @@
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text;
namespace BizHawk.Client.Common
{
@ -10,15 +9,6 @@ namespace BizHawk.Client.Common
protected IStringLog _log;
protected string LogKey = "";
public string GetInputLog()
{
var sb = new StringBuilder();
var writer = new StringWriter(sb);
WriteInputLog(writer);
writer.Flush();
return sb.ToString();
}
public void WriteInputLog(TextWriter writer)
{
writer.WriteLine("[Input]");

View File

@ -2,7 +2,6 @@
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
namespace BizHawk.Client.Common
{
@ -10,15 +9,6 @@ namespace BizHawk.Client.Common
{
private readonly List<string> _log = new List<string>();
public string GetInputLog()
{
var sb = new StringBuilder();
var writer = new StringWriter(sb);
WriteInputLog(writer);
writer.Flush();
return sb.ToString();
}
public void WriteInputLog(TextWriter writer)
{
writer.WriteLine("[Input]");

View File

@ -105,14 +105,6 @@ namespace BizHawk.Client.Common
/// Instructs the movie to save the current contents to Filename
/// </summary>
void Save();
/// <summary>
/// Extracts the current input log from the user.
/// This is provided as the means for putting the input log into savestates,
/// for the purpose of out of order savestate loading (known as "bullet-proof rerecording")
/// </summary>
/// <returns>returns a string representation of the input log in its current state</returns>
string GetInputLog();
/// <summary>
/// Writes the input log directly to the stream, bypassing the need to load it all into ram as a string