diff --git a/Mac (Swift)/AppDelegate.swift b/Mac (Swift)/AppDelegate.swift index afdb404..ae05b87 100644 --- a/Mac (Swift)/AppDelegate.swift +++ b/Mac (Swift)/AppDelegate.swift @@ -12,23 +12,4 @@ class AppDelegate: NSObject, NSApplicationDelegate { @IBOutlet weak var window: NSWindow! - - func applicationDidFinishLaunching(_ aNotification: Notification) { - guard UTS46.characterMap.isEmpty else { return } - if let blobURL = Bundle.main.url(forResource: "uts46", withExtension: "xz") { - do { - try UTS46.load(from: blobURL, compression: .lzma) - } catch { - print("error: \(error)") - } - } - - } - - func applicationWillTerminate(_ aNotification: Notification) { - // Insert code here to tear down your application - } - - } -