Skip to content

Commit

Permalink
remove public
Browse files Browse the repository at this point in the history
  • Loading branch information
mash3l777 committed Mar 4, 2021
1 parent 1db3ca6 commit 457a2ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/MCaptchaView/MCaptchaView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import UIKit

public class MCaptchaView: UIView {
class MCaptchaView: UIView {

// Verification font code
private var _captchaFont: UIFont?
Expand Down Expand Up @@ -72,7 +72,7 @@ public class MCaptchaView: UIView {
}

// MARK:- draw
public override func draw(_ rect: CGRect) {
override func draw(_ rect: CGRect) {
super.draw(rect)

// Background color
Expand Down Expand Up @@ -129,7 +129,7 @@ public class MCaptchaView: UIView {
}

// Click to update verification code
public override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
updateCaptcha()
}
}

0 comments on commit 457a2ad

Please sign in to comment.