I'm referring to
protected synchronized boolean isWaiting(Thread thread) {
| return (thread.getState()==State.WAITING)
| || (thread.getState()==State.TIMED_WAITING);
| }
Thread.getState() and the Thread.State enum are new to java 5. Perhaps you set your JRE
system library to jdk 1.5 in eclipse?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974909#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...