Почему валидатор не пропускает? Выводит все правильно.
package com.javarush.task.task16.task1623;
/*
Рекурсивное создание нитей
*/
public class Solution {
static int count = 15;
static volatile int createdThreadCount;
public static void main(String[] args) {
System.out.println(new GenerateThread());
}
public static class GenerateThread extends Thread{
public GenerateThread() {
super(String.valueOf(createdThreadCount++));
start();
}
@Override
public String toString() {
return getName() + " created";
}
public void run() {
if(createdThreadCount < count){
Thread th = new GenerateThread();
System.out.println(th);
}
}
}
}