Skip to content

Commit

Permalink
[FIXED JENKINS-12356] month should not be 0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ssogabe committed Jan 20, 2012
1 parent 69e1fa2 commit 921359c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -59,6 +59,9 @@
<tt>install-plugin</tt> CLI command fails to put a file in the right location when installing from URL.
<li class=bug>
Fixed a bug where long post-production processing in matrix jobs can cause incorrect abortion.
<li class=bug>
month should not be 0.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-12356">issue 12356</a>)
</ul>
</div><!--=TRUNK-END=-->

Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/scheduler/BaseParser.java
Expand Up @@ -36,7 +36,7 @@
* @author Kohsuke Kawaguchi
*/
abstract class BaseParser extends LLkParser {
private static final int[] LOWER_BOUNDS = new int[] {0,0,1,0,0};
private static final int[] LOWER_BOUNDS = new int[] {0,0,1,1,0};
private static final int[] UPPER_BOUNDS = new int[] {59,23,31,12,7};

/**
Expand Down

0 comments on commit 921359c

Please sign in to comment.