Skip to content

Commit

Permalink
DEMRUM-620: swiftlint: remove weak from IBOutlet
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmcevilly committed Jan 17, 2025
1 parent 389b801 commit 249a2bf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import UIKit

class SlowFrameDetectorViewController: UIViewController {

@IBOutlet weak var slowFramesButton: UIButton!
@IBOutlet weak var frozenFramesButton: UIButton!
@IBOutlet weak var beatingHeartView: SlowFrameBeatingHeartView!
@IBOutlet var slowFramesButton: UIButton!
@IBOutlet var frozenFramesButton: UIButton!
@IBOutlet var beatingHeartView: SlowFrameBeatingHeartView!

override func viewDidLoad() {
super.viewDidLoad()
Expand Down

0 comments on commit 249a2bf

Please sign in to comment.