Project Maintenance

This commit is contained in:
Gustave Monce
2021-08-09 20:21:09 +02:00
parent 9865ef7f79
commit 847ce0506d
411 changed files with 5922 additions and 54941 deletions
+5 -4
View File
@@ -30,10 +30,10 @@ namespace WPinternals
internal class NokiaBootloaderViewModel : ContextViewModel
{
private NokiaFlashModel CurrentModel;
private Action<PhoneInterfaces> RequestModeSwitch;
private readonly NokiaFlashModel CurrentModel;
private readonly Action<PhoneInterfaces> RequestModeSwitch;
internal Action SwitchToGettingStarted;
private object LockDeviceInfo = new object();
private readonly object LockDeviceInfo = new();
internal NokiaBootloaderViewModel(NokiaPhoneModel CurrentModel, Action<PhoneInterfaces> RequestModeSwitch, Action SwitchToGettingStarted)
: base()
@@ -47,12 +47,13 @@ namespace WPinternals
internal override void EvaluateViewState()
{
if (IsActive)
{
new Thread(() => StartLoadDeviceInfo()).Start();
}
}
private void StartLoadDeviceInfo()
{
}
internal void RebootTo(string Mode)