I found a bug in GramJob.setTerminationTime() in the 4.2 nightly
tarball I've been using.
The current body of the function is this:
if (terminationTime == null) {
this.terminationTime = Calendar.getInstance();
this.terminationTime.setTime(terminationTime);
} else {
this.terminationTime.setTime(terminationTime);
}
The if conditional should be changed to reference this.terminationTime.
+--------------------------------+-----------------------------------+
| Jaime Frey | I used to be a heavy gambler. |
| [EMAIL PROTECTED] | But now I just make mental bets. |
| http://www.cs.wisc.edu/~jfrey/ | That's how I lost my mind. |
+--------------------------------+-----------------------------------+