Remove assertionFailure that had an incorrect assumption.

This commit is contained in:
Brent Simmons
2025-02-01 17:55:37 -08:00
parent a27a70e9fb
commit 7847a8b796

View File

@@ -297,7 +297,7 @@ private extension AppDelegate {
assert(Thread.isMainThread)
guard let window = self.window else {
assertionFailure("Expected window.")
// Could be nil legitimately  this can get called before window is set up.
return
}