I have problem with code e.g.:
Object1.method1(object2.method2(var2));
I want to enter in method1 but when I press F5 in Eclipse – me transfer to method2.
Is possible in Eclipse debugger point that need enter only in method1?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
either:
1) place a breakpoint in method1, resume (
F8) and let the code break at the breakpoint you’ve set.or
2) while being at method2, step return (
F7) and then again step into (F5) will place you in method1.