So I create a thread
Thread personThread = new Thread(Person);
personThread.start();
/** Now to stop it **/
personThread.stop();
The problem is, when I try to compile I get: warning: [deprecation] stop() in Thread has been deprecated
. As I am to understand, this is no longer used method. How can I then completely stop a thread, irrelevant of it's status?