Open
Description
Hi,
Problem :
I have a Java maven project with for example an apache commons-io
dependency. When I put a breakpoint on one of the line in the library source codes then debugger won't stop there.
code sample
public static void main(String[] args) {
System.out.println("Hello World!");
IOUtils.toString("hi".getBytes());
}
I have a breakpoint inside toString
method inside IOUtils