Skip to content
This repository has been archived by the owner on Jan 5, 2021. It is now read-only.

Commit

Permalink
don't use defaults for generator modules
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasmuelder committed Nov 12, 2018
1 parent 37bbc19 commit 033aebc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -170,7 +170,7 @@ public Module getModule(String feature, String... options) {
}
}

if (modules.size() == 0) {
if (modules.size() == 0 && !FEATURE_GENERATOR.equals(feature)) {
// If no overriding modules are contributed for this feature use the defaults
return DomainRegistry.getDomain(BasePackage.Literals.DOMAIN_ELEMENT__DOMAIN_ID.getDefaultValueLiteral())
.getModule(feature, options);
Expand Down

0 comments on commit 033aebc

Please sign in to comment.