long now = System.currentTimeMillis();
Enumeration enumeration = Registry.choreHashtable.elements();
while (enumeration.hasMoreElements()) {
Chore chore = (Chore) enumeration.nextElement();
long duration = chore.duration;
WorkingChore workingChore = null;
if (chore.duration > 0) {
for (int i = 0; i < Registry.workingChoreVector.size(); i++) {
workingChore = (WorkingChore) Registry.workingChoreVector.elementAt(i);
if (chore.getId() == workingChore.getId0()) {
if (workingChore.status == WorkingChore.STATUS_STARTED) {