I'm successfully debugging this script in Intellij:
println "a";
println "b";
But, when trying to debug the following script, my breakpoints aren't hit
public class Main implements Runnable{
public Main(String[] args) {
println("A"); // breakpoint
println "B";
}
void run() {
println "C"; // breakpoint
println "D";
}
}
Note that the script does run successfully, just without stopping at breakpoints.