Digital PCT265 defect MVAPCT-322: Spelling fix.

This commit is contained in:
Hedden, Kyle Matthew 2024-10-03 15:15:11 -04:00
parent 817d7900f4
commit 214ccfd8f6
3 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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

View File

@ -53,6 +53,6 @@
self.session = [self createNSURLSession];
}
- (void)clearPeristentCache {}
- (void)clearPersistentCache {}
@end