diff --git a/RombaSharp/RombaSharp.Inits.cs b/RombaSharp/RombaSharp.Inits.cs index 7e8a5938..ad186d7c 100644 --- a/RombaSharp/RombaSharp.Inits.cs +++ b/RombaSharp/RombaSharp.Inits.cs @@ -250,9 +250,10 @@ namespace RombaSharp /// /// Wrap cancelling a long-running job /// + /// TODO: Implement private static void InitCancel() { - Globals.Logger.User("This feature is obsolete: cancel"); + Globals.Logger.User("This feature is not yet implemented: cancel"); } /// @@ -606,9 +607,10 @@ namespace RombaSharp /// /// Wrap printing memory stats /// + /// TODO: Implement private static void InitMemstats() { - Globals.Logger.User("This feature is obsolete: cancel"); + Globals.Logger.User("This feature is not yet implemented: cancel"); } /// @@ -644,9 +646,10 @@ namespace RombaSharp /// /// Wrap showing progress of currently running command /// + /// TODO: Implement private static void InitProgress() { - Globals.Logger.User("This feature is obsolete: progress"); + Globals.Logger.User("This feature is not yet implemented: progress"); } /// @@ -940,9 +943,10 @@ WHERE sha1.sha1 IN (""" + String.Join("\",\"", hashes) + "\")"; /// /// Wrap gracefully shutting down the server /// + /// TODO: Implement private static void InitShutdown() { - Globals.Logger.User("This feature is obsolete: shutdown"); + Globals.Logger.User("This feature is not yet implemented: shutdown"); } ///