meghrathod / chatX

Constructor of non-final class starts a thread JAVA-E0208
Bug risk
Major
1 occurrence in this check
anonymous object starts a thread in its constructor but is not final
 30        oos = output;
 31        username = user;
 32        initComponents();
 33        new ChatHandler(nis, username, oos, ta).start(); 34    }
 35
 36    private void initComponents() {