Skip to content

Commit

Permalink
Revert fileprivate where needed
Browse files Browse the repository at this point in the history
  • Loading branch information
jcavar committed Sep 21, 2016
1 parent 80482d4 commit bfb8003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Refresher/Animator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ import UIKit

internal class AnimatorView: UIView {

private let titleLabel: UILabel = {
fileprivate let titleLabel: UILabel = {
let label = UILabel()
label.translatesAutoresizingMaskIntoConstraints = false
return label
}()

private let activityIndicatorView: UIActivityIndicatorView = {
fileprivate let activityIndicatorView: UIActivityIndicatorView = {
let activity = UIActivityIndicatorView(activityIndicatorStyle: .gray)
activity.translatesAutoresizingMaskIntoConstraints = false
return activity
Expand Down

0 comments on commit bfb8003

Please sign in to comment.