Skip to content

Commit

Permalink
Remove loading in AppDelegate
Browse files Browse the repository at this point in the history
  • Loading branch information
Wevah committed Apr 18, 2020
1 parent 4f4077f commit 404fb1d
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions Mac (Swift)/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}


}

0 comments on commit 404fb1d

Please sign in to comment.