Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
aloubyansky committed Mar 13, 2024
1 parent 61aaf1f commit a6f57b4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ private void loadModule(RawModule rawModule, List<RawModule> newModules) {
if (rawModule.model == null) {
return;
}
newModules.add(rawModule);

var added = loadedModules.putIfAbsent(
new GAV(ModelUtils.getGroupId(rawModule.model), rawModule.model.getArtifactId(),
Expand All @@ -195,6 +194,8 @@ private void loadModule(RawModule rawModule, List<RawModule> newModules) {
if (added != null) {
return;
}
newModules.add(rawModule);

for (var module : rawModule.model.getModules()) {
queueModule(rawModule.model.getProjectDirectory().toPath().resolve(module));
}
Expand Down

0 comments on commit a6f57b4

Please sign in to comment.