Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2010-02-05 09:44:02 +0000
committerEike Stepper2010-02-05 09:44:02 +0000
commit89bdb56d4cf31e285c34f0f76654760e5b2c105c (patch)
treee8da8224f03b00974750cf29f5d3dc6f312f2541 /plugins/org.eclipse.emf.cdo.defs
parente8ea8d500aba8e360d09ccbf52899f9b1f2a726d (diff)
downloadcdo-89bdb56d4cf31e285c34f0f76654760e5b2c105c.tar.gz
cdo-89bdb56d4cf31e285c34f0f76654760e5b2c105c.tar.xz
cdo-89bdb56d4cf31e285c34f0f76654760e5b2c105c.zip
fixed warnings
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.defs')
-rw-r--r--plugins/org.eclipse.emf.cdo.defs/src/org/eclipse/emf/cdo/defs/impl/CDOAuditDefImpl.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/org.eclipse.emf.cdo.defs/src/org/eclipse/emf/cdo/defs/impl/CDOAuditDefImpl.java b/plugins/org.eclipse.emf.cdo.defs/src/org/eclipse/emf/cdo/defs/impl/CDOAuditDefImpl.java
index b6a76638d4..690dab3aa0 100644
--- a/plugins/org.eclipse.emf.cdo.defs/src/org/eclipse/emf/cdo/defs/impl/CDOAuditDefImpl.java
+++ b/plugins/org.eclipse.emf.cdo.defs/src/org/eclipse/emf/cdo/defs/impl/CDOAuditDefImpl.java
@@ -97,10 +97,8 @@ public class CDOAuditDefImpl extends CDOViewDefImpl implements CDOAuditDef
Date oldTimeStamp = timeStamp;
timeStamp = newTimeStamp;
if (eNotificationRequired())
- {
eNotify(new ENotificationImpl(this, Notification.SET, CDODefsPackage.CDO_AUDIT_DEF__TIME_STAMP, oldTimeStamp,
timeStamp));
- }
}
/**
@@ -178,9 +176,7 @@ public class CDOAuditDefImpl extends CDOViewDefImpl implements CDOAuditDef
public String toString()
{
if (eIsProxy())
- {
return super.toString();
- }
StringBuffer result = new StringBuffer(super.toString());
result.append(" (timeStamp: ");

Back to the top