mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Instance should not be static
This commit is contained in:
@@ -9,11 +9,11 @@ namespace SabreTools
|
|||||||
public class TrimMerge
|
public class TrimMerge
|
||||||
{
|
{
|
||||||
// Instance variables
|
// Instance variables
|
||||||
private static string _filename = "";
|
private string _filename = "";
|
||||||
private static string _path = "";
|
private string _path = "";
|
||||||
private static bool _rename;
|
private bool _rename;
|
||||||
private static bool _forceunpack;
|
private bool _forceunpack;
|
||||||
private static Logger _logger;
|
private Logger _logger;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new TrimMerge object
|
/// Create a new TrimMerge object
|
||||||
@@ -82,7 +82,7 @@ namespace SabreTools
|
|||||||
/// <param name="filename">Name of the file to be processed</param>
|
/// <param name="filename">Name of the file to be processed</param>
|
||||||
/// <param name="path">The base path to be used for comparison</param>
|
/// <param name="path">The base path to be used for comparison</param>
|
||||||
/// <param name="rename">True if roms are to be renamed</param>
|
/// <param name="rename">True if roms are to be renamed</param>
|
||||||
private static void ProcessDAT(string filename, string path, bool rename)
|
private void ProcessDAT(string filename, string path, bool rename)
|
||||||
{
|
{
|
||||||
List<RomData> roms = RomManipulation.Parse(filename, 0, 0, _logger);
|
List<RomData> roms = RomManipulation.Parse(filename, 0, 0, _logger);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user