Consider the following:
class One {
void meth() {
println 'blah blah'
}
}
class Two {
final Map map
Two(Map map = Collections.EMPTY_MAP) {
this.map = map
}
}
Attempting to set a breakpoint on line containing println results in method entry breakpoint on line containing Two(Map....
Consider the following:
Attempting to set a breakpoint on line containing
printlnresults in method entry breakpoint on line containingTwo(Map....