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 170332 Details for
Bug 306710
IndexOutOfBoundsException upon invalidation
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]
CDODeltaNotification patch proposal
CDODeltaNotificationPatch.txt (text/plain), 1.31 KB, created by
Pascal Lehmann
on 2010-05-28 08:18:03 EDT
(
hide
)
Description:
CDODeltaNotification patch proposal
Filename:
MIME Type:
Creator:
Pascal Lehmann
Created:
2010-05-28 08:18:03 EDT
Size:
1.31 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.emf.cdo >Index: src/org/eclipse/emf/internal/cdo/CDODeltaNotificationImpl.java >=================================================================== >RCS file: /cvsroot/modeling/org.eclipse.emf/org.eclipse.emf.cdo/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDODeltaNotificationImpl.java,v >retrieving revision 1.8 >diff -u -r1.8 CDODeltaNotificationImpl.java >--- src/org/eclipse/emf/internal/cdo/CDODeltaNotificationImpl.java 20 Apr 2010 08:10:18 -0000 1.8 >+++ src/org/eclipse/emf/internal/cdo/CDODeltaNotificationImpl.java 28 May 2010 12:00:38 -0000 >@@ -14,6 +14,7 @@ > import org.eclipse.emf.cdo.CDODeltaNotification; > import org.eclipse.emf.cdo.common.id.CDOID; > import org.eclipse.emf.cdo.common.revision.delta.CDORevisionDelta; >+import org.eclipse.emf.cdo.util.ObjectNotFoundException; > > import org.eclipse.emf.common.notify.Notification; > import org.eclipse.emf.common.util.ECollections; >@@ -210,7 +211,14 @@ > { > if (object instanceof CDOID) > { >- object = getCDOObject().cdoView().getObject((CDOID)object, true); >+ try >+ { >+ object = getCDOObject().cdoView().getObject((CDOID)object, true); >+ } >+ catch (ObjectNotFoundException e) >+ { >+ // do nothing. >+ } > } > > return object;
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
Actions:
View
|
Diff
Attachments on
bug 306710
:
165282
|
167345
|
170330
|
170332
|
170958
|
171709