Skip to content
This repository has been archived by the owner on Jan 9, 2018. It is now read-only.

Commit

Permalink
Update CronExpression.java (eclipse-archived#2798)
Browse files Browse the repository at this point in the history
Fix eclipse-archived#2746

Signed-off-by: Karel Goderis <karel.goderis@me.com>
  • Loading branch information
kgoderis authored and chaton78 committed May 7, 2017
1 parent 3991808 commit 9138428
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 9138428

Please sign in to comment.