--- a/jdk/src/share/classes/java/lang/ThreadGroup.java Tue Feb 08 13:30:30 2011 -0800
+++ b/jdk/src/share/classes/java/lang/ThreadGroup.java Wed Feb 09 09:53:07 2011 +0000
@@ -868,21 +868,6 @@
}
/**
- * Notifies the group that the thread {@code t} is about to be
- * started and adds the thread to this thread group.
- *
- * The thread is now a fully fledged member of the group, even though
- * it hasn't been started yet. It will prevent the group from being
- * destroyed so the unstarted Threads count is decremented.
- */
- void threadStarting(Thread t) {
- synchronized (this) {
- add(t);
- nUnstartedThreads--;
- }
- }
-
- /**
* Adds the specified thread to this thread group.
*
* <p> Note: This method is called from both library code
@@ -910,6 +895,12 @@
// This is done last so it doesn't matter in case the
// thread is killed
nthreads++;
+
+ // The thread is now a fully fledged member of the group, even
+ // though it may, or may not, have been started yet. It will prevent
+ // the group from being destroyed so the unstarted Threads count is
+ // decremented.
+ nUnstartedThreads--;
}
}