Skip to content

Commit

Permalink
feat(core): the relationship between modules is reversed (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
heowc authored Jun 24, 2024
1 parent 88786f0 commit 19ee368
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public void addVertex(Map<String, Set<String>> packages) {

public void addEdge(Map<String, Set<String>> packages) {
packages.forEach((target, sources) -> {
sources.forEach(source -> addEdge(target, source, new DomainEdge(target, source)));
sources.forEach(source -> addEdge(source, target, new DomainEdge(target, source)));
});
}
}

0 comments on commit 19ee368

Please sign in to comment.