Skip to content

Commit

Permalink
Update .gitignore to ignore eclipse files.
Browse files Browse the repository at this point in the history
Correct (incorrect) comment in CronTabTest
  • Loading branch information
jtnord committed Dec 2, 2010
1 parent 35ddff1 commit 6e011bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
target
work
# IntelliJ project files
*.iml
*.iws
*.ipr
# eclipse project file
.settings
.classpath
.project
2 changes: 1 addition & 1 deletion core/src/test/java/hudson/scheduler/CronTabTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void testFloor2() throws Exception {
}

public void testFloor3() throws Exception {
// conflict between DoM and DoW. In this we need to find a day that's the last day of a month and Sunday in 2010
// conflict between DoM and DoW. In this we need to find a day that's the first day of a month and Sunday in 2010
CronTab x = new CronTab("0 0 1 * 0");
Calendar c = new GregorianCalendar(2011,0,1,15,55);
// the last such day in 2010 is Aug 1st
Expand Down

0 comments on commit 6e011bc

Please sign in to comment.