Skip to content

Commit

Permalink
remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
nghialv committed Feb 24, 2015
1 parent 038760c commit 07bcbbe
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Source/MYSection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,10 @@ public extension MYSection {
func fire(_ animation: MYAnimation = .None) -> Self {
switch reloadTracker.state {
case .Add:
println("ADD")
delegate?.insertRows(reloadTracker.getIndexPaths(index), animation: animation)
case .Remove:
println("REMOVE")
delegate?.deleteRows(reloadTracker.getIndexPaths(index), animation: animation)
default:
println("RESET")
delegate?.reloadSections(NSIndexSet(index: index), animation: animation)
break
}
Expand Down

0 comments on commit 07bcbbe

Please sign in to comment.