(title: String, message: String)
| 1707 | } |
| 1708 | |
| 1709 | private func presentErrorAlert(title: String, message: String) { |
| 1710 | let alert = NSAlert() |
| 1711 | alert.messageText = title |
| 1712 | alert.informativeText = message |
| 1713 | alert.alertStyle = .critical |
| 1714 | alert.addButton(withTitle: "OK") |
| 1715 | alert.runModal() |
| 1716 | } |
| 1717 | |
| 1718 | private func openPreviousBuildPicker() { |
| 1719 | Task { @MainActor in |
no outgoing calls
no test coverage detected