Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse')
-rw-r--r--plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/impl/MetamodelImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/impl/MetamodelImpl.java b/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/impl/MetamodelImpl.java
index e2a86b7e..680e44c9 100644
--- a/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/impl/MetamodelImpl.java
+++ b/plugins/org.eclipse.m2m.atl.emftvm/src/org/eclipse/m2m/atl/emftvm/impl/MetamodelImpl.java
@@ -89,7 +89,7 @@ public class MetamodelImpl extends ModelImpl implements Metamodel {
throw new IllegalArgumentException(String.format("Type %s not found in metamodel %s", typeName, this));
}
if (ambiguousTypes.contains(typeName)) {
- ATLLogger.warning(String.format("Metamodel contains more than one type with name %s", typeName));
+ ATLLogger.warning(String.format("Metamodel %s contains more than one type with name %s", this, typeName));
}
return type;
}

Back to the top