if (!inEvaluationMode()) {
AgentInstance agent=null;
for (Enumeration<AgentInstance> agentList = qashProperties.getActiveAgents() ; agentList.hasMoreElements() ;) {
try {
agent = (AgentInstance)agentList.nextElement();
agent.KILLSTARTEDPROCESSES();
}
catch (Exception e) {
printError(3,"Error during AUTOCLEAN of one or more agent processes - may need restart of agents!"+" :"+e.toString());
}
}