From ed762d126fe0745194caa876c43d71c07a90101f Mon Sep 17 00:00:00 2001 From: Subhankar Date: Wed, 18 Nov 2020 16:40:48 +0530 Subject: [PATCH] changes in access specifier --- MVMCoreUI/Atomic/Templates/TemplateModel.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MVMCoreUI/Atomic/Templates/TemplateModel.swift b/MVMCoreUI/Atomic/Templates/TemplateModel.swift index bb8bb104..2976134a 100644 --- a/MVMCoreUI/Atomic/Templates/TemplateModel.swift +++ b/MVMCoreUI/Atomic/Templates/TemplateModel.swift @@ -15,7 +15,7 @@ import Foundation // MARK: - Properties //-------------------------------------------------- - public class var identifier: String { + open class var identifier: String { return "" } @@ -76,7 +76,7 @@ import Foundation tabBarIndex = try typeContainer.decodeIfPresent(Int.self, forKey: .tabBarIndex) } - public func encode(to encoder: Encoder) throws { + open func encode(to encoder: Encoder) throws { var container = encoder.container(keyedBy: CodingKeys.self) try container.encode(pageType, forKey: .pageType) try container.encode(template, forKey: .template)