Skip to content

Commit

Permalink
Merge branch 'NielsDoucet-issue-370'
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrozanec committed Apr 7, 2019
2 parents 5fd6168 + 764d6fe commit 988fd43
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -318,7 +318,7 @@ private static CronDefinition quartz() {
* <td>Day of month</td>
* <td>YES</td>
* <td>1-31</td>
* <td>* ? , - / L W</td>
* <td>* ? , - /</td>
* </tr>
* <tr>
* <td>Month</td>
Expand All @@ -330,7 +330,7 @@ private static CronDefinition quartz() {
* <td>Day of week</td>
* <td>YES</td>
* <td>1-7 or SUN-SAT</td>
* <td>* ? , - / L #</td>
* <td>* ? , - /</td>
* </tr>
* </table>
*
Expand All @@ -345,9 +345,9 @@ private static CronDefinition spring() {
.withSeconds().and()
.withMinutes().and()
.withHours().and()
.withDayOfMonth().supportsL().supportsW().supportsLW().supportsQuestionMark().and()
.withDayOfMonth().supportsQuestionMark().and()
.withMonth().and()
.withDayOfWeek().withValidRange(1, 7).withMondayDoWValue(2).supportsHash().supportsL().supportsQuestionMark().and()
.withDayOfWeek().withValidRange(1, 7).withMondayDoWValue(2).supportsQuestionMark().and()
.instance();
}

Expand Down

0 comments on commit 988fd43

Please sign in to comment.