Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 306710 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/emf/internal/cdo/CDODeltaNotificationImpl.java (-1 / +9 lines)
Lines 14-19 Link Here
14
import org.eclipse.emf.cdo.CDODeltaNotification;
14
import org.eclipse.emf.cdo.CDODeltaNotification;
15
import org.eclipse.emf.cdo.common.id.CDOID;
15
import org.eclipse.emf.cdo.common.id.CDOID;
16
import org.eclipse.emf.cdo.common.revision.delta.CDORevisionDelta;
16
import org.eclipse.emf.cdo.common.revision.delta.CDORevisionDelta;
17
import org.eclipse.emf.cdo.util.ObjectNotFoundException;
17
18
18
import org.eclipse.emf.common.notify.Notification;
19
import org.eclipse.emf.common.notify.Notification;
19
import org.eclipse.emf.common.util.ECollections;
20
import org.eclipse.emf.common.util.ECollections;
Lines 210-216 Link Here
210
  {
211
  {
211
    if (object instanceof CDOID)
212
    if (object instanceof CDOID)
212
    {
213
    {
213
      object = getCDOObject().cdoView().getObject((CDOID)object, true);
214
      try
215
      {
216
        object = getCDOObject().cdoView().getObject((CDOID)object, true);
217
      }
218
      catch (ObjectNotFoundException e)
219
      {
220
        // do nothing.
221
      }
214
    }
222
    }
215
223
216
    return object;
224
    return object;

Return to bug 306710