description
I was browsing through the source code when I came upon something I thought was odd.
In the DroidExplorer.Plugins project, inside the FlashRecovery.cs source file, I see the following on lines 157-160:
switch ( result )
case 0: // Reboot
break;
CommandRunner.Instance.Reboot ( );
... etc
Was the break placed before the other code below it by accident, or is it there because the feature is not yet complete?