Reputation: 5654
while debugging in eclipse
the problem is: String.hashCode() line: 1489 [local variables unavailable]
thus, not able to inspect the values of variables
please help me on this by providing some pointers
Hi Tomasz Nurkiewicz Thanks for the efforts, i took a new jdk (haing all the class details) after catching on these How to debug .class files in ECLIPSE? and http://jdk6.java.net/download.html but then also facing same issue................
Upvotes: 3
Views: 7202
Reputation: 340723
JDK classes aren't compiled with debugging information, hence you can't see local variables during debugging. You'll have to rebuild JDK or use development version, see: Step through JDK source code in IntelliJ IDEA and Enabling debugging inside JRE classes.
Upvotes: 5