From 214ccfd8f6c5bcba05e0e0b355da438ed9080d50 Mon Sep 17 00:00:00 2001 From: "Hedden, Kyle Matthew" Date: Thu, 3 Oct 2024 15:15:11 -0400 Subject: [PATCH] Digital PCT265 defect MVAPCT-322: Spelling fix. --- MVMCore/MVMCore/ActionHandling/ActionRestartHandler.swift | 2 +- MVMCore/MVMCore/Session/MVMCoreSessionObject.h | 2 +- MVMCore/MVMCore/Session/MVMCoreSessionObject.m | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MVMCore/MVMCore/ActionHandling/ActionRestartHandler.swift b/MVMCore/MVMCore/ActionHandling/ActionRestartHandler.swift index c353ba4..4a9164e 100644 --- a/MVMCore/MVMCore/ActionHandling/ActionRestartHandler.swift +++ b/MVMCore/MVMCore/ActionHandling/ActionRestartHandler.swift @@ -29,7 +29,7 @@ open class ActionRestartHandler: MVMCoreActionHandlerProtocol { } if let sessionObject = MVMCoreSessionObject.sharedGlobal() { if model.hardReset { - sessionObject.clearPeristentCache() + sessionObject.clearPersistentCache() } // Restarts the app (forcing any passed in page types). sessionObject.restartSession(withPageType: model.pageType, request: model.requestURL, parameters: model.extraParameters?.toJSON(), clearAllVariables: true) diff --git a/MVMCore/MVMCore/Session/MVMCoreSessionObject.h b/MVMCore/MVMCore/Session/MVMCoreSessionObject.h index 0bea882..a269c28 100644 --- a/MVMCore/MVMCore/Session/MVMCoreSessionObject.h +++ b/MVMCore/MVMCore/Session/MVMCoreSessionObject.h @@ -39,7 +39,7 @@ - (void)clearSessionObject; /// Clears any persistent cache related to the current session. -- (void)clearPeristentCache; +- (void)clearPersistentCache; /// Copys string to clipboard and assigns self.clipboardString for validation /// Should only be used when expected string is a secure string diff --git a/MVMCore/MVMCore/Session/MVMCoreSessionObject.m b/MVMCore/MVMCore/Session/MVMCoreSessionObject.m index e0998ef..2da521f 100644 --- a/MVMCore/MVMCore/Session/MVMCoreSessionObject.m +++ b/MVMCore/MVMCore/Session/MVMCoreSessionObject.m @@ -53,6 +53,6 @@ self.session = [self createNSURLSession]; } -- (void)clearPeristentCache {} +- (void)clearPersistentCache {} @end