I am trying to debug web application hosted on tomcat. I have following execution flow structure.
public ClassA
{
public void execute(ClassB query)
{
....
.....
ImportedObjectFromJar = query.execute();
....
....
}
}
I am using F6 to navigate through code down the line and as soon as code reach line ImportedObjectFromJar = query.execute();
eclipse asking me to add source files of different 3rd party libraries. (the jar file has no source attachment
).
Why? I don't want to go inside JAR file, I am interested only in my code. Any ideas how I can fix it?