From 891afe57ddae252b41d214ee4beab3f1f57e9980 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 1 Apr 2023 21:18:02 -0700 Subject: [PATCH] Fix warning about unused value. --- Mac/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/AppDelegate.swift b/Mac/AppDelegate.swift index 44dc42137..7d80f7bf3 100644 --- a/Mac/AppDelegate.swift +++ b/Mac/AppDelegate.swift @@ -386,7 +386,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations, alert.buttons[0].keyEquivalent = "\r" - let response = alert.runModal() + _ = alert.runModal() } }