1

Removed random function that wasnt connected to anything

This commit is contained in:
Jake Howard 2014-09-14 15:14:34 +01:00
parent 4d4dbdc6d7
commit 86755f635b

View File

@ -55,13 +55,6 @@ namespace Saviour_Backup_System
}
internal static void displayDriveDetails(string driveName)
{
DriveInfo selectedDrive;
foreach (DriveInfo drive in getConnectedDrives()) { if (drive.Name == driveName) { selectedDrive = drive; break; } }
}
internal static string getDriveType(DriveInfo selectedDrive)
{
string driveTypeDecoded = "Error decoding drive details!";