From eb8edd2acd7b95a4787cb9273e130a0a847b4bca Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Fri, 9 Aug 2024 11:51:40 -0500 Subject: [PATCH] removed initialSetup so as devs won't use this method anymore, this will now be private to the base classes Signed-off-by: Matt Bruce --- VDS/Protocols/ViewProtocol.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/VDS/Protocols/ViewProtocol.swift b/VDS/Protocols/ViewProtocol.swift index c7cba091..695386cb 100644 --- a/VDS/Protocols/ViewProtocol.swift +++ b/VDS/Protocols/ViewProtocol.swift @@ -19,9 +19,6 @@ public protocol ViewProtocol: AnyObject, Initable, Resettable, Enabling, Surface /// Used for setting an implementation for the default Accessible Action var accessibilityAction: ((Self) -> Void)? { get set } - /// Executed on initialization for this View. - func initialSetup() - /// Called once when a view is initialized and is used to Setup additional UI or other constants and configurations. func setup()