From 224184610f34b0aca9a67b7358ffea1b3fcdff05 Mon Sep 17 00:00:00 2001 From: mayur nilwant Date: Fri, 14 Jun 2024 09:31:25 -0400 Subject: [PATCH] Added space after expirationDate --- MVMCore/MVMCore/OtherHandlers/MVMCoreCache.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCore/MVMCore/OtherHandlers/MVMCoreCache.m b/MVMCore/MVMCore/OtherHandlers/MVMCoreCache.m index 9107a26..0be8bc3 100644 --- a/MVMCore/MVMCore/OtherHandlers/MVMCoreCache.m +++ b/MVMCore/MVMCore/OtherHandlers/MVMCoreCache.m @@ -280,7 +280,7 @@ static NSString * const STATIC_CACHE_COMPONENT = @"StaticCache.txt"; -- (void)addPageToPersistentCache:(nonnull NSDictionary *)jsonDictionary pageType:(nonnull NSString *)pageType expirationDate:(nonnull NSDate *)expirationDate{ +- (void)addPageToPersistentCache:(nonnull NSDictionary *)jsonDictionary pageType:(nonnull NSString *)pageType expirationDate:(nonnull NSDate *)expirationDate { NSError *error = nil; [[PersistentCacheManager shared] saveWithData:jsonDictionary forKey:pageType path:[self getPathForPersistentCachePage:pageType isAppLevel:[self shouldSaveAtAppLevelWithInfoDictionary:jsonDictionary]] expirationDate:expirationDate error:&error];