From 9b50c2b1cb502c71e4fd58960d993300659675d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Maquin?= Date: Sun, 27 May 2018 16:57:55 +1000 Subject: [PATCH] Fix #163 - Silly weak modifier in protocol property --- Sources/Instructions/Protocols/Public/CoachMarkBodyView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Instructions/Protocols/Public/CoachMarkBodyView.swift b/Sources/Instructions/Protocols/Public/CoachMarkBodyView.swift index 33d81081..aefdfbfd 100644 --- a/Sources/Instructions/Protocols/Public/CoachMarkBodyView.swift +++ b/Sources/Instructions/Protocols/Public/CoachMarkBodyView.swift @@ -34,5 +34,5 @@ public protocol CoachMarkBodyView: class { /// The `CoachMarkView`, of which the current view must be /// part, will automatically set itself as the delegate and will take care /// of fowarding the state to the arrow view. - weak var highlightArrowDelegate: CoachMarkBodyHighlightArrowDelegate? { get set } + var highlightArrowDelegate: CoachMarkBodyHighlightArrowDelegate? { get set } }