Skip to content

Commit 66abb3d

Browse files
committed
(wsi) remove all debug print in swift backend
1 parent 59cc2c0 commit 66abb3d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/wsi/macos/swift/Application.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,17 @@ import AppKit
22

33
final class AppDelegate: NSResponder, NSApplicationDelegate {
44
override init() {
5-
debugPrint("Swift: AppDelegate.init()")
65
super.init()
76
}
87

98
deinit {
10-
debugPrint("Swift: AppDelegate.deinit")
119
}
1210

1311
required init?(coder aCoder: NSCoder) {
1412
fatalError("Swift: init(coder:) not implemented!")
1513
}
1614

1715
func applicationDidFinishLaunching(_ notification: Notification) {
18-
debugPrint("Swift: applicationDidFinishLaunching(_)")
1916
}
2017

2118
func applicationShouldTerminate(_ sender: NSApplication) -> NSApplication.TerminateReply {
@@ -39,7 +36,6 @@ public func processEvents() {
3936
}
4037

4138
public func initCocoaProcess() {
42-
debugPrint("Swift: initCocoaProcess()")
4339
let app = NSApplication.shared
4440

4541
if app.delegate == nil {

0 commit comments

Comments
 (0)