Skip to content

Commit

Permalink
Add final for internal classes
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfum committed Apr 11, 2019
1 parent e04a4a1 commit b3a6723
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PKHUD/ContainerView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import UIKit

/// The window used to display the PKHUD within. Placed atop the applications main window.
internal class ContainerView: UIView {
internal final class ContainerView: UIView {

private var keyboardIsVisible = false
private var keyboardHeight: CGFloat = 0.0
Expand Down
2 changes: 1 addition & 1 deletion PKHUD/FrameView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import UIKit

/// Provides the general look and feel of the PKHUD, into which the eventual content is inserted.
internal class FrameView: UIVisualEffectView {
internal final class FrameView: UIVisualEffectView {

internal init() {
super.init(effect: UIBlurEffect(style: .light))
Expand Down

0 comments on commit b3a6723

Please sign in to comment.