Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOObjectWrapper.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOObjectWrapper.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOObjectWrapper.java
index c0138b65f2..e326097ab7 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOObjectWrapper.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOObjectWrapper.java
@@ -269,6 +269,7 @@ public abstract class CDOObjectWrapper implements InternalCDOObject
*/
public int eDerivedOperationID(int baseOperationID, Class<?> baseClass)
{
+ // Note: This causes a compiler error with EMF < 2.6M4!!! Ignore it or update your target platform.
return instance.eDerivedOperationID(baseOperationID, baseClass);
}
@@ -277,6 +278,7 @@ public abstract class CDOObjectWrapper implements InternalCDOObject
*/
public Object eInvoke(EOperation operation, EList<?> arguments) throws InvocationTargetException
{
+ // Note: This causes a compiler error with EMF < 2.6M4!!! Ignore it or update your target platform.
return instance.eInvoke(operation, arguments);
}
@@ -285,6 +287,7 @@ public abstract class CDOObjectWrapper implements InternalCDOObject
*/
public Object eInvoke(int operationID, EList<?> arguments) throws InvocationTargetException
{
+ // Note: This causes a compiler error with EMF < 2.6M4!!! Ignore it or update your target platform.
return instance.eInvoke(operationID, arguments);
}

Back to the top