[Ursus-developers] some error
Status: Alpha
Brought to you by:
agsjr
|
From: Vishal R. <vi...@cy...> - 2005-08-19 13:56:36
|
Hi Anthony
There are some errors in ursus.server.ServerConfHandler.java
if(type.equalsIgnoreCase("seconds")){
server.getReactor().getThreadPoolSpec().setTimeUnit(TimeUnit.SECONDS);
}else if(type.equalsIgnoreCase("minutes")){
server.getReactor().getThreadPoolSpec().setTimeUnit(TimeUnit.MINUTES);
}else if(type.equalsIgnoreCase("hours")){
server.getReactor().getThreadPoolSpec().setTimeUnit(TimeUnit.HOURS);
}else if(type.equalsIgnoreCase("days")){
server.getReactor().getThreadPoolSpec().setTimeUnit(TimeUnit.DAYS);
}
Compilation error: TimeUnit.MINUTES, TimeUnit.HOURS and TimeUnit.DAYS cannot
be resolved
Vishal
|