You're only setting a variable's value to null.
So, the question is whether any thread effectively has a reference to that Thread object. Consider the new thread itself... it could easily include
System.out.println(Thread.currentThread());
What would you expect that to do if the Thread object had been garbage collected?
Objects are only garbage collected at some point after there are no live references to them any more. Any live thread has a reference to itself.
Frankly, it would be a pain if you had to ensure that you did keep a reference a thread you've just started, in order to prevent it from being stopped abruptly.