By default, IntelliJ won’t step into code from external libraries unless the sources or decompiled code are available. To force stepping in:
1.Enable “Step Into External Code”: Settings → Build, Execution, Deployment → Debugger → Stepping Uncheck “Do not step into library classes.”
2.Attach sources or download them automatically: IntelliJ can fetch source jars for Maven/Gradle dependencies so you can debug inside them.
3.Disable smart stepping filters if IntelliJ is skipping methods automatically.
Once those settings are updated, “Step Into” will enter third-party code just like your own.