fixed bug

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-03-03 16:56:47 -06:00
parent 052165420d
commit 06a33458a7
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
import Foundation import Foundation
open class ActionOpenUrlHandler: ModelHandler<ActionOpenUrlModel, Void> { open class ActionOpenUrlHandler: ModelHandler<ActionOpenUrlModel, Swift.Void> {
public override func perform() { public override func perform() {
MVMCoreDispatchUtility.performBlock(onMainThread: { [self] in MVMCoreDispatchUtility.performBlock(onMainThread: { [self] in

View File

@ -25,7 +25,7 @@ open class ModelHandler<Model: ModelProtocol, Response>: NSObject, MVMCoreHandle
//Need to be a property so that you can access //Need to be a property so that you can access
//the handler outside of the "perform(then: handler) //the handler outside of the "perform(then: handler)
public var handler: Handler! public var handler: Handler?
//typed ModelProtocl this handler is expecting //typed ModelProtocl this handler is expecting
public var model: Model public var model: Model