diff --git a/unit_tests/global_execution_queue.cpp b/unit_tests/global_execution_queue.cpp index cb57002168..35c300161b 100644 --- a/unit_tests/global_execution_queue.cpp +++ b/unit_tests/global_execution_queue.cpp @@ -10,10 +10,6 @@ bool_t debugSignalExecutor = false; -TestExecutor::TestExecutor() { - -} - void TestExecutor::scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param) { if (debugSignalExecutor) { printf("scheduleTask %d\r\n", delayUs); diff --git a/unit_tests/global_execution_queue.h b/unit_tests/global_execution_queue.h index e4a6e9c6ab..43d39da3d8 100644 --- a/unit_tests/global_execution_queue.h +++ b/unit_tests/global_execution_queue.h @@ -1,5 +1,5 @@ /* - * global_execution_queue.h + * @file global_execution_queue.h * * Created on: Jan 9, 2019 * @author Andrey Belomutskiy, (c) 2012-2019 @@ -13,7 +13,6 @@ class TestExecutor : public ExecutorInterface { public: - TestExecutor(); void scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, schfunc_t callback, void *param); void scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param); void clear();