Remove debugging output.

This commit is contained in:
hns 2005-07-20 13:50:36 +00:00
parent 6d4978f652
commit 06fa3713a7

View file

@ -228,12 +228,10 @@ public class CronJob {
while (it.hasNext()) { while (it.hasNext()) {
CronJob job = (CronJob) it.next(); CronJob job = (CronJob) it.next();
if (job.getFunction() == null) { if (job.getFunction() == null) {
System.err.println("DROPPING CRON JOB " + job);
it.remove(); it.remove();
} }
} }
List jobVec = new ArrayList (jobs.values()); List jobVec = new ArrayList (jobs.values());
System.err.println("GOT CRON JOB LIST: " + jobVec);
return sort (jobVec); return sort (jobVec);
} }