DeploymentVisitor.visit() invocation count is O( n ), where n is the number of edges.
The number of seenBeanDeploymentArchives.contains() checks may be O(n^n) in the worst case, however it is just a HashSet lookup. I do not think we can do any better than that
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
DeploymentVisitor.visit() invocation count is O( n ), where n is the number of edges.
The number of seenBeanDeploymentArchives.contains() checks may be O(n^n) in the worst case, however it is just a HashSet lookup. I do not think we can do any better than that