grahamar / cron-parser

Java Parser For Cron Expressions
MIT License
203 stars 60 forks source link

Extra comma when more than one minute and hour 0 (midnight) #26

Closed mcallinder closed 9 years ago

mcallinder commented 9 years ago

When you specify more than one minute, or every minute, and the hour is 0 for midnight, an extra comma will be placed after the minutes:

5 0 * *           At 0:05 AM 5,10 0 * *      At 05 and 10 minutes past the hour, 5,10 0 2 *     At 05 and 10 minutes past the hour, , on day 2 of the month 5/10 0 2 *     Every 10 minutes, , on day 2 of the month

mcallinder commented 9 years ago

Same for seconds:

5,6 0 0 * *      At 5 and 6 seconds past the minute, 5,6 0 1 * *      At 5 and 6 seconds past the minute, , at 1:00 AM 5,6 0 0 2 * *    At 5 and 6 seconds past the minute, , , on day 2 of the month

grahamar commented 9 years ago

Thanks I'll have a fix out for this today