Skip to content

Commit

Permalink
Merge pull request #54 from rmitin/mir_export_extn
Browse files Browse the repository at this point in the history
Fix name provider to support contributions
  • Loading branch information
rmitin authored Feb 13, 2018
2 parents cff6ead + b2c8dc9 commit 3d330ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public abstract class AbstractExportedNameProvider extends IQualifiedNameProvide
*/
@Override
public QualifiedName getFullyQualifiedName(final EObject obj) {
return cache.get(Tuples.pair(obj, "fqn"), obj.eResource(), new Provider<QualifiedName>() { //$NON-NLS-1$
return cache.get(Tuples.pair(obj, this.getClass()), obj.eResource(), new Provider<QualifiedName>() {
@Override
public QualifiedName get() {
return qualifiedName(obj);
Expand Down

0 comments on commit 3d330ae

Please sign in to comment.