Reputation: 521
Is it possible to exclude source files (appear as 'Decompiled Class') in IntelliJ while debugging.
I would like to exclude the lib files like EJBDescriptors etc while debugging so that I dont step into them.
Is it possible from IntelliJ debugger?
Upvotes: 1
Views: 1409
Reputation: 2993
Not a blanket solution to avoid any decompiled class, but it sounds like you know what classes you want to avoid so here is my suggestion.
You can configure IntelliJ to skip classes/packages when stepping through code in settings in Settings > Build, Execution, Deployment > Debugger > Stepping:
Upvotes: 5