Skip to content

Commit

Permalink
Better access control
Browse files Browse the repository at this point in the history
  • Loading branch information
nathantannar4 committed Apr 4, 2019
1 parent 3f93702 commit 601c393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/Layout/MessagesCollectionViewFlowLayout.swift
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ open class MessagesCollectionViewFlowLayout: UICollectionViewFlowLayout {
///
/// - Parameters:
/// - isHidden: A Boolean value that is to be the new state of the typing indicator
open func setTypingIndicatorViewHidden(_ isHidden: Bool) {
internal func setTypingIndicatorViewHidden(_ isHidden: Bool) {
isTypingIndicatorViewHidden = isHidden
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/Views/MessagesCollectionView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ open class MessagesCollectionView: UICollectionView {
///
/// - Parameters:
/// - isHidden: A Boolean value that is to be the new state of the typing indicator
open func setTypingIndicatorViewHidden(_ isHidden: Bool) {
internal func setTypingIndicatorViewHidden(_ isHidden: Bool) {
messagesCollectionViewFlowLayout.setTypingIndicatorViewHidden(isHidden)
}

Expand Down

0 comments on commit 601c393

Please sign in to comment.