Need help with an error message
Got a multithreaded chat program running but I'm getting a warning message and i'm not sure what it means:
Warning(43,14): method stop() in class java.lang.Thread has been deprecated
it refers to this line which should close the thread on the server when a user logs out:
this.stop();
What am i doing wrong here?
Thanks

