From 64f6624e00cb7db29c5d97d3aed32dc73256b135 Mon Sep 17 00:00:00 2001 From: Scott Pfeil Date: Thu, 4 Nov 2021 14:16:21 -0400 Subject: [PATCH] silly! --- MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m index 6ac92d8..8d5280b 100644 --- a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m +++ b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m @@ -886,14 +886,11 @@ - (void)navigationController:(UINavigationController *)navigationController interactiveTransitionWasCanceled:(BOOL)canceled { if (self.delegateObject.presentationDelegate && [self.delegateObject.presentationDelegate respondsToSelector:@selector(navigationController:interactiveTransitionWasCanceled:)]) { - return [self.delegateObject.presentationDelegate navigationController:navigationController interactiveTransitionWasCanceled:canceled]; - } else { - return; + [self.delegateObject.presentationDelegate navigationController:navigationController interactiveTransitionWasCanceled:canceled]; } } - (void)viewController:(UIViewController *)presentingViewController willPresentViewController:(UIViewController *)presentedViewController { - if ([self.delegateObject.presentationDelegate respondsToSelector:@selector(viewController:willPresentViewController:)]) { [self.delegateObject.presentationDelegate viewController:presentingViewController willPresentViewController:presentedViewController]; }