Skip to content

Commit

Permalink
style consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
reececomo committed Aug 6, 2018
1 parent 3cb1602 commit 8988b22
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions Sources/Collections/CollectionSkeletonProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@ extension CollectionSkeleton where Self: UIScrollView {
var estimatedNumberOfRows: Int { return 0 }
func addDummyDataSource() {}
func removeDummyDataSource(reloadAfter: Bool) {}

func disableUserInteraction() {
isScrollEnabled = false
}

func enableUserInteraction() {
isScrollEnabled = true
}
func disableUserInteraction() { isScrollEnabled = false }
func enableUserInteraction() { isScrollEnabled = true }
}

0 comments on commit 8988b22

Please sign in to comment.