()
| 13324 | |
| 13325 | function removeFromSelectedModels(filePath) { |
| 13326 | const normalized = normalizePathForComparison(filePath); |
| 13327 | for (const path of selectedModels) { |
| 13328 | if (normalizePathForComparison(path) === normalized) { |
| 13329 | selectedModels.delete(path); |
| 13330 | return path; |
| 13331 | } |
| 13332 | } |
| 13333 | return null; |
| 13334 | } |
| 13335 | |
| 13336 | function isInSelectedModels(filePath) { |
no test coverage detected