Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2009-12-19 09:27:42 +0000
committerEike Stepper2009-12-19 09:27:42 +0000
commit089f2f65bc5e9c8c0d3b0df2f29f00029d09abcb (patch)
treeed81a11ba35cab2c98ed90ece0c2e70152d9156f /plugins/org.eclipse.emf.cdo/src/org/eclipse/emf
parent59bee5c178b61ffa975b4544e688e0157987c3e5 (diff)
downloadcdo-089f2f65bc5e9c8c0d3b0df2f29f00029d09abcb.tar.gz
cdo-089f2f65bc5e9c8c0d3b0df2f29f00029d09abcb.tar.xz
cdo-089f2f65bc5e9c8c0d3b0df2f29f00029d09abcb.zip
updated to M4
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