-1

At the moment I try to debug the class java.awt.Component. If I try to inspect a computed local variable (by typing Shift+Ctrl+I) I get the following message:

enter image description here

But the variable must be initialised at the moment!

Do you now that issue? Can you help me?

Thanks!!

mrbela
  • 4,477
  • 9
  • 44
  • 79

1 Answers1

0

The source/class files from the JDK are compiled without debug information and therefore eclipse can't inspect these vars. See this answer for more information.

To do this you need to get a different rt.jar or compile it yourself

Community
  • 1
  • 1