This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 44131 - Exceptions thrown while stepping over in debugger
Summary: Exceptions thrown while stepping over in debugger
Status: CLOSED FIXED
Alias: None
Product: debugger
Classification: Unclassified
Component: Java (show other bugs)
Version: 4.x
Hardware: PC Linux
: P3 blocker (vote)
Assignee: issues@debugger
URL:
Keywords: RANDOM
: 45697 (view as bug list)
Depends on:
Blocks:
 
Reported: 2004-06-01 21:40 UTC by Jesse Glick
Modified: 2010-04-29 09:17 UTC (History)
2 users (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Some stack traces (5.39 KB, text/plain)
2004-06-01 21:41 UTC, Jesse Glick
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jesse Glick 2004-06-01 21:40:57 UTC
Current dev build. Don't know how to reproduce.
Thrown repeatedly when pressing F8 in a certain
method. Local Variables window open.
Comment 1 Jesse Glick 2004-06-01 21:41:31 UTC
Created attachment 15407 [details]
Some stack traces
Comment 2 Jesse Glick 2004-06-01 21:42:45 UTC
Probably due to incorrect threading usage of Visualizers? Used to see
some such exceptions coming from TreeTableView when tasklist tried to
change o.o.n.Children from off EQ.
Comment 3 Jan Jancura 2004-06-02 09:11:09 UTC
Thanks for tip. We will look at it.
Comment 4 Jan Jancura 2004-07-01 09:23:04 UTC
Matula (issue 45697):

I get repeated
assertion error (below) and AIOOB in the console
(also below) very frequently almost after every
step over.
Hint: tmp, this, it, col and cls are local
variables in the code I am trying to debug. The
code I am debugging looks as follows:
        protected void addInnerClasses(Collection
col, JavaClass cls) {
            for (Iterator it =
cls.getContents().iterator(); it.hasNext();) {
                Object tmp = it.next();
                if (tmp instanceof JavaClass) {
                    col.add(tmp);
                    addInnerClasses(col,
(JavaClass) tmp);
                }
            }
        }

The exception usually occurs when I get to line:
 Object tmp = it.next();

----------------------------
Comment 5 Jan Jancura 2004-07-01 09:23:26 UTC
*** Issue 45697 has been marked as a duplicate of this issue. ***
Comment 6 Jan Jancura 2004-09-08 15:50:07 UTC
Should be fixed now. I have moved repaint to AWT thread.
Comment 7 Quality Engineering 2010-04-29 09:17:53 UTC
Verified ... and Closing all issues resolved into NetBeans 6.7 and earlier.