Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions MacDown/Code/Application/MPMainController.m
Original file line number Diff line number Diff line change
Expand Up @@ -102,21 +102,6 @@ @implementation MPMainController

- (void)applicationDidFinishLaunching:(NSNotification *)notification
{
// Using private API [WebCache setDisabled:YES] to disable WebView's cache
id webCacheClass = (id)NSClassFromString(@"WebCache");
if (webCacheClass) {
// Ignoring "undeclared selector" warning
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wundeclared-selector"
BOOL setDisabledValue = YES;
NSMethodSignature *signature = [webCacheClass methodSignatureForSelector:@selector(setDisabled:)];
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature];
invocation.selector = @selector(setDisabled:);
invocation.target = [webCacheClass class];
[invocation setArgument:&setDisabledValue atIndex:2];
[invocation invoke];
#pragma clang diagnostic pop
}
[[NSAppleEventManager sharedAppleEventManager]
setEventHandler:self
andSelector:@selector(openUrlSchemeAppleEvent:withReplyEvent:)
Expand Down