You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since GloomDefinitions#merge constructs a new Set for each merged ClassDefinition, currently merging two sets of GloomDefinitions together is very inefficient. A proper merge function would be more efficient and clear.
for (ClassDefinitiondefinition : proposedDependencyJar.getGloomDefinitions().getDefinitions()) {
this.gloomDefs = this.gloomDefs.merge(definition);
}