Remove unused settings

This commit is contained in:
Cj 2024-08-09 23:31:30 -04:00
parent 8eec69ff09
commit 496be90eb8
2 changed files with 1 additions and 58 deletions

View File

@ -65,9 +65,5 @@
"_template"
],
"MethodParamaterBlackList": []
},
"CrossCompiler": {
"LastLoadedProject": "",
"AutoLoadLastActiveProject": true
}
}

View File

@ -43,18 +43,6 @@ public class Settings
}
}
private CrossCompilerSettings _crossCompiler;
public CrossCompilerSettings CrossCompiler
{
get { return _crossCompiler; }
set
{
_crossCompiler = value;
Save();
}
}
private void Save()
{
DataProvider.SaveAppSettings();
@ -338,47 +326,6 @@ public class AutoMapperSettings
}
}
/// <summary>
/// These are settings for the cross compiler module
/// </summary>
public class CrossCompilerSettings
{
private string _lastLoadedProject;
/// <summary>
/// Last Loaded Project Path
/// </summary>
public string LastLoadedProject
{
get { return _lastLoadedProject; }
set
{
_lastLoadedProject = value;
Save();
}
}
private bool _autoLoadLastActiveProj;
/// <summary>
/// Should the last active project be auto loaded
/// </summary>
public bool AutoLoadLastActiveProject
{
get { return _autoLoadLastActiveProj; }
set
{
_autoLoadLastActiveProj = value;
Save();
}
}
private void Save()
{
DataProvider.SaveAppSettings();
}
}
/// <summary>
/// These are settings that all versions of the remappers use
/// </summary>