How can I prevent Eclipse from being included in Java library code when using Step Into? What I'm used to in other IDEs (like IntelliJ) is that with Step Into, you introduce methods defined by or by third-party libraries, but not by the Java structure itself. Eclipse does this and it really slows down debugging, especially if you have calls to your own methods and those defined in the Java structure on one line. You must constantly switch between Step Over, Step Into or Step Return if you are already logged in.
source share