Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
1.5
-
None
-
WebSphere Studio Application Developer, WAS 5.1 test environment
Description
org.apache.jetspeed.daemon.impl.util.ThreadGroupJoin has a line that attempts to determine the interrupt status of an entry in an array of Threads:
if ( !threads[i].interrupted() )
Thread.interrupted() is a static method that only checks the status of the current thread. The correct syntax should be:
if ( !threads[i].isInterrupted() )