From 2b103724e3ea4e42810a64f817972044b06c466c Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 3 Aug 2022 11:44:44 -0500 Subject: [PATCH] removed methods Signed-off-by: Matt Bruce --- VDS/Protocols/ViewProtocol.swift | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/VDS/Protocols/ViewProtocol.swift b/VDS/Protocols/ViewProtocol.swift index 02d1d31b..38ebcd96 100644 --- a/VDS/Protocols/ViewProtocol.swift +++ b/VDS/Protocols/ViewProtocol.swift @@ -9,11 +9,8 @@ import Foundation import UIKit public protocol ViewProtocol { - - // Updates the ui to fit the right size. - func updateView(_ size: CGFloat) - + // Can setup ui here. Should be called in the initialization functions. - func setupView() + func setup() }