[RombaSharp] Remove dead code

This commit is contained in:
Matt Nadareski
2018-01-27 16:41:12 -08:00
parent 68e1052e7f
commit 2fbb0e8302
2 changed files with 2 additions and 24 deletions

View File

@@ -333,24 +333,6 @@ namespace RombaSharp
_port = port;
}
/// <summary>
/// Moves DAT index entries for orphaned DATs to backup folder
/// </summary>
/// <param name="logOnly">Only write out actions to log</param>
private static void PurgeBackup(bool logOnly)
{
Globals.Logger.User("This feature is not yet implemented: purge-backup");
}
/// <summary>
/// Deletes DAT index entries for orphaned DATs
/// </summary>
/// <param name="logOnly">Only write out actions to log</param>
private static void PurgeDelete(bool logOnly)
{
Globals.Logger.User("This feature is not yet implemented: purge-delete");
}
/// <summary>
/// Populate or refresh the database information
/// </summary>

View File

@@ -529,7 +529,7 @@ namespace RombaSharp
/// <param name="depot">List of depots to scan files in, empty means all</param>
/// <param name="dats">List of DATs to use as the basis of scanning, empty means all</param>
/// <param name="logOnly">True if only the output of the operation is shown, false to actually run</param>
/// TODO: Verify implementation
/// TODO: Implement
private static void InitPurgeBackup(
string backup,
int workers,
@@ -538,8 +538,6 @@ namespace RombaSharp
bool logOnly)
{
Globals.Logger.Error("This feature is not yet implemented: purge-backup");
PurgeBackup(logOnly);
}
/// <summary>
@@ -549,7 +547,7 @@ namespace RombaSharp
/// <param name="depot">List of depots to scan files in, empty means all</param>
/// <param name="dats">List of DATs to use as the basis of scanning, empty means all</param>
/// <param name="logOnly">True if only the output of the operation is shown, false to actually run</param>
/// TODO: Verify implementation
/// TODO: Implement
private static void InitPurgeDelete(
int workers,
List<string> depot,
@@ -557,8 +555,6 @@ namespace RombaSharp
bool logOnly)
{
Globals.Logger.Error("This feature is not yet implemented: purge-delete");
PurgeDelete(logOnly);
}
/// <summary>