From 85f78b358d1f6de4b4a3a742404fe7bb8d6b8662 Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 17 May 2017 13:26:14 -0500 Subject: [PATCH] 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. --- BizHawk.Client.Common/movie/bk2/Bk2Movie.InputLog.cs | 10 ---------- BizHawk.Client.Common/movie/bkm/BkmMovie.InputLog.cs | 10 ---------- BizHawk.Client.Common/movie/interfaces/IMovie.cs | 8 -------- 3 files changed, 28 deletions(-) diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Movie.InputLog.cs b/BizHawk.Client.Common/movie/bk2/Bk2Movie.InputLog.cs index 1ba5b2f72f..700eba24ae 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Movie.InputLog.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Movie.InputLog.cs @@ -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]"); diff --git a/BizHawk.Client.Common/movie/bkm/BkmMovie.InputLog.cs b/BizHawk.Client.Common/movie/bkm/BkmMovie.InputLog.cs index 8e65e04539..59cc7bf267 100644 --- a/BizHawk.Client.Common/movie/bkm/BkmMovie.InputLog.cs +++ b/BizHawk.Client.Common/movie/bkm/BkmMovie.InputLog.cs @@ -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 _log = new List(); - 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]"); diff --git a/BizHawk.Client.Common/movie/interfaces/IMovie.cs b/BizHawk.Client.Common/movie/interfaces/IMovie.cs index 4ef25bd4e6..8ff81ea8cb 100644 --- a/BizHawk.Client.Common/movie/interfaces/IMovie.cs +++ b/BizHawk.Client.Common/movie/interfaces/IMovie.cs @@ -105,14 +105,6 @@ namespace BizHawk.Client.Common /// Instructs the movie to save the current contents to Filename /// void Save(); - - /// - /// 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") - /// - /// returns a string representation of the input log in its current state - string GetInputLog(); /// /// Writes the input log directly to the stream, bypassing the need to load it all into ram as a string