From 31547cddbc59245ed08ca544939c35e870e9a7b8 Mon Sep 17 00:00:00 2001 From: thodkatz <thodkatz@gmail.com> Date: Mon, 28 Jan 2019 18:10:08 +0200 Subject: [PATCH] Delete unnecessary enumeration type and an empty line --- inc/ErrorHandler.hpp | 12 ------------ src/Services/RequestVerificationService.cpp | 1 - 2 files changed, 13 deletions(-) diff --git a/inc/ErrorHandler.hpp b/inc/ErrorHandler.hpp index c5d57578..94aa2e66 100644 --- a/inc/ErrorHandler.hpp +++ b/inc/ErrorHandler.hpp @@ -111,18 +111,6 @@ public: UnknownExecutionProgressError = 0, }; - /** - * This enumeration type corresponds with reports about the progress of the execution - * of a request. For example if the execution of a request is a long process, then we can divide - * the process into steps and take feedback that depends on the step identifier - * - * @todo configure step ID for the suitable requests - */ - //enum stepID { - //UnknownStepID = 0 - //}; - - /** * The error code for failed completion of execution reports, as specified in ECSS 5.3.5.2.3g * diff --git a/src/Services/RequestVerificationService.cpp b/src/Services/RequestVerificationService.cpp index cae7a05c..9753fc40 100644 --- a/src/Services/RequestVerificationService.cpp +++ b/src/Services/RequestVerificationService.cpp @@ -205,4 +205,3 @@ void RequestVerificationService::execute(const Message &message) { break; } } - -- GitLab