()
| 648 | } |
| 649 | |
| 650 | func (a *App) DeleteAllDependencies() { |
| 651 | a.mu.Lock() |
| 652 | a.ProjectData.Dependencies = make(map[string][]string) |
| 653 | a.ProjectModified = true |
| 654 | a.mu.Unlock() |
| 655 | a.emitLog("All dependencies deleted", LogWarning) |
| 656 | a.updateHangingLibraries() |
| 657 | } |
| 658 | |
| 659 | // --- Modrinth Sync --- |
| 660 |
nothing calls this directly
no test coverage detected