Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 39543 Details for
Bug 138626
ConcurrentModificationException in AbstractEditPartViewer.fireSelectionChanged()
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch for AbstractEditPartViewer
AbstractEditPartViewerPatch.txt (text/plain), 1.04 KB, created by
Cherie Revells
on 2006-04-26 11:47:51 EDT
(
hide
)
Description:
Patch for AbstractEditPartViewer
Filename:
MIME Type:
Creator:
Cherie Revells
Created:
2006-04-26 11:47:51 EDT
Size:
1.04 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.gef >Index: src/org/eclipse/gef/ui/parts/AbstractEditPartViewer.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.gef/src/org/eclipse/gef/ui/parts/AbstractEditPartViewer.java,v >retrieving revision 1.47 >diff -u -r1.47 AbstractEditPartViewer.java >--- src/org/eclipse/gef/ui/parts/AbstractEditPartViewer.java 3 Apr 2006 21:42:02 -0000 1.47 >+++ src/org/eclipse/gef/ui/parts/AbstractEditPartViewer.java 26 Apr 2006 15:33:05 -0000 >@@ -230,9 +230,10 @@ > * Fires selection changed to the registered listeners at the time called. > */ > protected void fireSelectionChanged() { >+ Object listeners[] = selectionListeners.toArray(); > SelectionChangedEvent event = new SelectionChangedEvent(this, getSelection()); >- for (int i = 0; i < selectionListeners.size(); i++) >- ((ISelectionChangedListener)selectionListeners.get(i)) >+ for (int i = 0; i < listeners.length; i++) >+ ((ISelectionChangedListener)listeners[i]) > .selectionChanged(event); > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
nyssen
:
iplog+
Actions:
View
|
Diff
Attachments on
bug 138626
: 39543