Remove exception variable setter

Remove SceneKit crash variable setting exception
handler from NSApplication delegate.
This commit is contained in:
Christopher Snowhill 2022-06-19 21:04:53 -07:00 committed by GitHub
parent 385335b37c
commit b0ec7c557c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,11 +20,6 @@
AppController *_appController;
}
- (void)reportException:(NSException *)exception {
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"sceneKitCrashed"];
[super reportException:exception];
}
- (void)finishLaunching {
[super finishLaunching];
_appController = (AppController *)[self delegate];