Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Taal2013-02-28 22:42:25 +0000
committerMartin Taal2013-02-28 22:42:25 +0000
commit0c96040de3c3f55446c38927f06bfac279bbc472 (patch)
tree7f2c00b5aa6fb3a708e7cdd54f19a1b70af47d97 /hibernate/org.eclipse.emf.teneo.hibernate
parente727e76559c5a87fdcb7743a34548c6eafb3f2b2 (diff)
downloadorg.eclipse.emf.teneo-0c96040de3c3f55446c38927f06bfac279bbc472.tar.gz
org.eclipse.emf.teneo-0c96040de3c3f55446c38927f06bfac279bbc472.tar.xz
org.eclipse.emf.teneo-0c96040de3c3f55446c38927f06bfac279bbc472.zip
Fixes issue 401710
Diffstat (limited to 'hibernate/org.eclipse.emf.teneo.hibernate')
-rw-r--r--hibernate/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/auditing/AuditHandler.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/hibernate/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/auditing/AuditHandler.java b/hibernate/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/auditing/AuditHandler.java
index 7d4960732..c5a5a5abb 100644
--- a/hibernate/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/auditing/AuditHandler.java
+++ b/hibernate/org.eclipse.emf.teneo.hibernate/src/org/eclipse/emf/teneo/hibernate/auditing/AuditHandler.java
@@ -586,6 +586,9 @@ public class AuditHandler implements ExtensionPoint {
auditingEClass.getESuperTypes().add(TeneoauditingPackage.eINSTANCE.getTeneoAuditEntry());
} else {
for (EClass eSuperClass : eClass.getESuperTypes()) {
+ if (isNoAuditing(po, eSuperClass)) {
+ continue;
+ }
auditingEClass.getESuperTypes().add(
getSuperAuditingEClass(dataStore, eSuperClass, registry, po));
}

Back to the top