Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Update CronExpression.java #2798

Merged
merged 1 commit into from
Jan 13, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public CronExpression(final String expression, final Date startTime) throws Pars
* @throws ParseException if the string expression cannot be parsed into a valid <code>CronExpression</code>.
*/
public CronExpression(final String expression, final Date startTime, final TimeZone zone) throws ParseException {
super(expression, " \t", startTime, zone, 0, 1);
super(expression, " \t", startTime, zone, 0, 2);
}

@Override
Expand Down