caiwei-ebay commented on a change in pull request #144:
URL: https://github.com/apache/maven-resolver/pull/144#discussion_r786365341



##########
File path: 
maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/collect/DefaultDependencyCollector.java
##########
@@ -343,36 +358,75 @@ private static String getId( Artifact a )
         return a.getGroupId() + ':' + a.getArtifactId() + ':' + 
a.getClassifier() + ':' + a.getExtension();
     }
 
+    private void processNode( Args args, Results results, DependencyNode 
current )
+    {
+        DataPool.DependencyNodeTraceContext traceContext = 
args.pool.getTraceContext( current );
+        if ( traceContext == null || !traceContext.recursive )
+        {
+            return;
+        }

Review comment:
       Maybe not safe to remove as recursive was there in the original 
implementation.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to