SIL.FieldWorks.UnicodeCharEditor.PUAInstaller.RemoveBackupFiles C# (CSharp) Method

RemoveBackupFiles() public method

Remove the backup files that were created to restore original files if there were a problem. If this method is called, there was no problem. We're just removing the backup file - much like a temp file at this point.
public RemoveBackupFiles ( ) : void
return void
		public void RemoveBackupFiles()
		{
			LogFile.AddVerboseLine("Removing Undo Files --- Start");
			for (var i = m_undoFileStack.Count; --i >= 0; )
			{
				var frame = m_undoFileStack[i];
				if (File.Exists(frame.m_backupFile))
					DeleteFile(frame.m_backupFile);
			}

			LogFile.AddVerboseLine("Removing Undo Files --- Finish");
		}