Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Merks2017-09-22 14:03:42 +0000
committerEd Merks2017-09-22 14:03:42 +0000
commit8e0e50bbe4007cfe74158b581c9fe333deb2c29b (patch)
tree35f892299001f23b6e04fda0bfcb973f1f064e2f
parent8b8e290879a09be8568d8c8a496ffada7350ef11 (diff)
downloadorg.eclipse.emf-8e0e50bbe4007cfe74158b581c9fe333deb2c29b.tar.gz
org.eclipse.emf-8e0e50bbe4007cfe74158b581c9fe333deb2c29b.tar.xz
org.eclipse.emf-8e0e50bbe4007cfe74158b581c9fe333deb2c29b.zip
[418619] Add custom EAnnotation validation support
-rw-r--r--plugins/org.eclipse.emf.ecore/src/org/eclipse/emf/ecore/util/ExtendedMetaDataAnnotationValidator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.ecore/src/org/eclipse/emf/ecore/util/ExtendedMetaDataAnnotationValidator.java b/plugins/org.eclipse.emf.ecore/src/org/eclipse/emf/ecore/util/ExtendedMetaDataAnnotationValidator.java
index 78308cde1..d41d04cb4 100644
--- a/plugins/org.eclipse.emf.ecore/src/org/eclipse/emf/ecore/util/ExtendedMetaDataAnnotationValidator.java
+++ b/plugins/org.eclipse.emf.ecore/src/org/eclipse/emf/ecore/util/ExtendedMetaDataAnnotationValidator.java
@@ -235,7 +235,7 @@ public final class ExtendedMetaDataAnnotationValidator extends BasicEAnnotationV
}
else
{
- specializedExtendedMetaData = new SpecializedExtendedMetaData(resourceSet.getPackageRegistry());
+ specializedExtendedMetaData = new SpecializedExtendedMetaData(new EPackageRegistryImpl(resourceSet.getPackageRegistry()));
}
EXTENDED_META_DATA_CACHE.put(resourceSet, specializedExtendedMetaData);
}

Back to the top