NavigationService: Remove unused SystemTask ref

This commit is contained in:
Riku Isokoski
2023-03-15 10:21:44 +02:00
parent 7e15a1e340
commit ca5e7d1adf
3 changed files with 2 additions and 11 deletions

View File

@@ -27,15 +27,11 @@
#undef min
namespace Pinetime {
namespace System {
class SystemTask;
}
namespace Controllers {
class NavigationService {
public:
explicit NavigationService(Pinetime::System::SystemTask& system);
NavigationService();
void Init();
@@ -57,8 +53,6 @@ namespace Pinetime {
std::string m_narrative;
std::string m_manDist;
int m_progress;
Pinetime::System::SystemTask& m_system;
};
}
}