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 <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2024-08-09 11:51:40 -05:00
parent 9f6a83f8ce
commit eb8edd2acd

View File

@ -19,9 +19,6 @@ public protocol ViewProtocol: AnyObject, Initable, Resettable, Enabling, Surface
/// Used for setting an implementation for the default Accessible Action /// Used for setting an implementation for the default Accessible Action
var accessibilityAction: ((Self) -> Void)? { get set } 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. /// Called once when a view is initialized and is used to Setup additional UI or other constants and configurations.
func setup() func setup()