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 209862 - java.util.ConcurrentModificationException at java.util.HashMap$HashIterator.nextEntry
Summary: java.util.ConcurrentModificationException at java.util.HashMap$HashIterator.n...
Status: RESOLVED FIXED
Alias: None
Product: debugger
Classification: Unclassified
Component: Java (show other bugs)
Version: 7.2
Hardware: All All
: P3 normal (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-03-21 14:10 UTC by aldobrucale
Modified: 2012-03-23 10:36 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter: 186104


Attachments
stacktrace (1.07 KB, text/plain)
2012-03-21 14:10 UTC, aldobrucale
Details

Note You need to log in before you can comment on or make changes to this bug.
Description aldobrucale 2012-03-21 14:10:50 UTC
Build: NetBeans IDE Dev (Build 201203200400)
VM: Java HotSpot(TM) Client VM, 22.1-b02, Java(TM) SE Runtime Environment, 1.7.0_03-b04
OS: Linux

User Comments:
aldobrucale: Killed a debuggee java program from the command shell




Stacktrace: 
java.util.ConcurrentModificationException
   at java.util.HashMap$HashIterator.nextEntry(HashMap.java:806)
   at java.util.HashMap$KeyIterator.next(HashMap.java:841)
   at java.util.AbstractCollection.addAll(AbstractCollection.java:333)
   at java.util.HashSet.<init>(HashSet.java:117)
   at org.netbeans.api.debugger.jpda.JPDABreakpoint.fireJPDABreakpointChange(JPDABreakpoint.java:288)
   at org.netbeans.api.debugger.jpda.JPDADebugger.fireBreakpointEvent(JPDADebugger.java:458)
Comment 1 aldobrucale 2012-03-21 14:10:54 UTC
Created attachment 117012 [details]
stacktrace
Comment 2 Martin Entlicher 2012-03-21 17:29:22 UTC
Missing synchronization.
Comment 3 Martin Entlicher 2012-03-22 12:22:51 UTC
Fixed by changeset:   216097:13c7d8f28283
http://hg.netbeans.org/main/rev/13c7d8f28283
Comment 4 Quality Engineering 2012-03-23 10:36:12 UTC
Integrated into 'main-golden', will be available in build *201203230400* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main-golden/rev/13c7d8f28283
User: mentlicher@netbeans.org
Log: #209862: Missing synchronization is added.