| 829 | } |
| 830 | |
| 831 | void Workspaces::removeWorkspacesToRemove() { |
| 832 | for (const auto& workspaceString : m_workspacesToRemove) { |
| 833 | removeWorkspace(workspaceString); |
| 834 | } |
| 835 | m_workspacesToRemove.clear(); |
| 836 | } |
| 837 | |
| 838 | void Workspaces::removeWorkspace(std::string const& workspaceString) { |
| 839 | spdlog::debug("Removing workspace {}", workspaceString); |
nothing calls this directly
no outgoing calls
no test coverage detected