(ThreadGroup parent, String name)
| 18 | private Cell<ThreadGroup> subgroups; |
| 19 | |
| 20 | public ThreadGroup(ThreadGroup parent, String name) { |
| 21 | this.parent = parent; |
| 22 | this.name = name; |
| 23 | |
| 24 | synchronized (parent) { |
| 25 | parent.subgroups = new Cell(this, subgroups); |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | public ThreadGroup(String name) { |
| 30 | this(Thread.currentThread().getThreadGroup(), name); |
nothing calls this directly
no test coverage detected