From c23bdc74cbb306deee24dc532ce1287f4ac31ab5 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 10 Feb 2019 17:47:17 -0800 Subject: [PATCH] Delete some commented-out code. --- .../CrashReportWindowController.swift | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/NetNewsWire/CrashReporter/CrashReportWindowController.swift b/NetNewsWire/CrashReporter/CrashReportWindowController.swift index ba156c9d0..9b95c11e2 100644 --- a/NetNewsWire/CrashReporter/CrashReportWindowController.swift +++ b/NetNewsWire/CrashReporter/CrashReportWindowController.swift @@ -52,7 +52,6 @@ final class CrashReportWindowController: NSWindowController { if !testing { CrashReporter.sendCrashLogText(crashLogText) } -// showThanksSheet() close() } @@ -61,17 +60,3 @@ final class CrashReportWindowController: NSWindowController { } } -//private extension CrashReportWindowController { -// -// func showThanksSheet() { -// guard let window = window else { -// return -// } -// -// let alert = NSAlert() -// alert.alertStyle = .informational -// alert.messageText = NSLocalizedString("Crash Report Sent", comment: "Crash Report Window") -// alert.informativeText = NSLocalizedString("Thank you! You rock! This is a big help to us.", comment: "Crash Report Window") -// alert.beginSheetModal(for: window) -// } -//}