View by Classes

Findings - Overview

info Constructor invokes Thread.start() (Findbugs)

new org.jcoderz.commons.connector.http.transport.Terminator(SimpleServer) invokes org.jcoderz.commons.connector.http.transport.Terminator.start() (test code)

Further info on the wiki.

The constructor starts a thread. This is likely to be wrong if the class is ever extended/subclassed, since the thread will be started before the subclass constructor is started.

1org.jcoderz.commons.connector.http.transport.Terminator
 [54]