| 65 | } |
| 66 | |
| 67 | void ConfigService::RemoveEditorconfig(std::string_view workspace) { |
| 68 | for (auto it = _styleConfigs.begin(); it != _styleConfigs.end(); it++) { |
| 69 | if (it->Workspace == workspace) { |
| 70 | _styleConfigs.erase(it); |
| 71 | break; |
| 72 | } |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | void ConfigService::UpdateClientConfig(ClientConfig clientConfig) { |
| 77 |
no test coverage detected