Skip to content

Commit

Permalink
[MNG-8331] Fix disappearing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Oct 19, 2024
1 parent f4eeca2 commit 30cd4a6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,8 @@ Model transformFileToRaw(Model model) {
} else {
newDeps.add(dep);
}
} else {
newDeps.add(dep);
}
}
return modified ? model.withDependencies(newDeps) : model;
Expand Down

0 comments on commit 30cd4a6

Please sign in to comment.