diff --git a/RombaSharp/RombaSharp.Helpers.cs b/RombaSharp/RombaSharp.Helpers.cs
index 52bfd0a8..0acef96a 100644
--- a/RombaSharp/RombaSharp.Helpers.cs
+++ b/RombaSharp/RombaSharp.Helpers.cs
@@ -333,24 +333,6 @@ namespace RombaSharp
_port = port;
}
- ///
- /// Moves DAT index entries for orphaned DATs to backup folder
- ///
- /// Only write out actions to log
- private static void PurgeBackup(bool logOnly)
- {
- Globals.Logger.User("This feature is not yet implemented: purge-backup");
- }
-
- ///
- /// Deletes DAT index entries for orphaned DATs
- ///
- /// Only write out actions to log
- private static void PurgeDelete(bool logOnly)
- {
- Globals.Logger.User("This feature is not yet implemented: purge-delete");
- }
-
///
/// Populate or refresh the database information
///
diff --git a/RombaSharp/RombaSharp.Inits.cs b/RombaSharp/RombaSharp.Inits.cs
index 1623ae78..7f78256d 100644
--- a/RombaSharp/RombaSharp.Inits.cs
+++ b/RombaSharp/RombaSharp.Inits.cs
@@ -529,7 +529,7 @@ namespace RombaSharp
/// List of depots to scan files in, empty means all
/// List of DATs to use as the basis of scanning, empty means all
/// True if only the output of the operation is shown, false to actually run
- /// 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);
}
///
@@ -549,7 +547,7 @@ namespace RombaSharp
/// List of depots to scan files in, empty means all
/// List of DATs to use as the basis of scanning, empty means all
/// True if only the output of the operation is shown, false to actually run
- /// TODO: Verify implementation
+ /// TODO: Implement
private static void InitPurgeDelete(
int workers,
List depot,
@@ -557,8 +555,6 @@ namespace RombaSharp
bool logOnly)
{
Globals.Logger.Error("This feature is not yet implemented: purge-delete");
-
- PurgeDelete(logOnly);
}
///