From 590293754c06f3836fa42b49813d2a6a4c4072ff Mon Sep 17 00:00:00 2001 From: "Khan, Arshad" Date: Tue, 3 Aug 2021 18:06:21 +0530 Subject: [PATCH] removing unwanted code --- MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.m | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.m b/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.m index ebaf52a..4f307f5 100644 --- a/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.m +++ b/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.m @@ -166,10 +166,9 @@ NSString * const KeyActionTypeOpen = @"openPage"; NSString *pageType = [actionInformation stringForKey:KeyPageType]; if (pageType.length == 0) { - MVMCoreLog(@"handling no page Error gracefully3"); // No page type to load, show error. -// MVMCoreErrorObject *error = [[MVMCoreErrorObject alloc] initWithTitle:[MVMCoreGetterUtility hardcodedStringWithKey:HardcodedErrorTitle] message:[MVMCoreGetterUtility hardcodedStringWithKey:HardcodedErrorUnableToProcess] code:ErrorCodeNoPageType domain:ErrorDomainNative location:[NSString stringWithFormat:@"%@_%@",NSStringFromClass([delegateObject.actionDelegate class]),KeyActionTypeOpen]]; -// [self handleActionError:error actionInformation:actionInformation additionalData:additionalData delegateObject:delegateObject]; + MVMCoreErrorObject *error = [[MVMCoreErrorObject alloc] initWithTitle:[MVMCoreGetterUtility hardcodedStringWithKey:HardcodedErrorTitle] message:[MVMCoreGetterUtility hardcodedStringWithKey:HardcodedErrorUnableToProcess] code:ErrorCodeNoPageType domain:ErrorDomainNative location:[NSString stringWithFormat:@"%@_%@",NSStringFromClass([delegateObject.actionDelegate class]),KeyActionTypeOpen]]; + [self handleActionError:error actionInformation:actionInformation additionalData:additionalData delegateObject:delegateObject]; return; }