Breakpoint in java.lang.* classes?
Is it possible to place breakpoints in java.lang.* classes? I tried placing a breakpoint in java.lang.Thread.stop() but it was invalid. Under Setting->IDE->Debugger I unchecked the "Do not step into classes" checkbox but that didn't solve the issue.
Please sign in to leave a comment.
Yes it is possible provided sources and classes correspond to each other. In
this example it looks like sources for java.lang.Thread were out of sync
with the bytecode actually run.
--
Best regards,
Eugene Zhuravlev
Software Developer
JetBrains Inc.
http://www.jetbrains.com
"Develop with pleasure!"
"Brian Jackson" <no_mail@jetbrains.com> wrote in message
news:25177024.1076085366343.JavaMail.itn@is.intellij.net...
placing a breakpoint in java.lang.Thread.stop() but it was invalid. Under
Setting->IDE->Debugger I unchecked the "Do not step into classes" checkbox
but that didn't solve the issue.