Skip to content

Commit

Permalink
Kill print
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuawright11 committed Oct 11, 2022
1 parent 15de53d commit 54f110d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Sources/Cron/FieldPattern.swift
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,7 @@ extension FieldPattern {
}
return NumberSet.none
case .range(let begin, let end): // MON-FRI
let ret = (begin...end).reduce(.none) { NumberSet.or($0, .step($1, 7)) }
print(ret)
return ret
return (begin...end).reduce(.none) { NumberSet.or($0, .step($1, 7)) }
default:
return nil
}
Expand Down

0 comments on commit 54f110d

Please sign in to comment.