Skip to content

Commit

Permalink
dependencies are never omitted
Browse files Browse the repository at this point in the history
  • Loading branch information
ki82 committed Nov 13, 2013
1 parent 3d67208 commit d0ac3f6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -52,7 +52,7 @@ class DependencyGraphRenderer {

private void render(final RenderableDependency node, boolean last, Set<ModuleVersionIdentifier> visited) {
def children = node.getChildren()
def alreadyRendered = !visited.add(node.getId())
def alreadyRendered = false
if (alreadyRendered) {
hasCyclicDependencies = true
}
Expand Down

0 comments on commit d0ac3f6

Please sign in to comment.