sanjana2505006 opened a new pull request, #270: URL: https://github.com/apache/maven-dependency-analyzer/pull/270
Hi! While reviewing the core analysis logic, I noticed a performance bottleneck in `DefaultProjectDependencyAnalyzer`. \n\nPreviously, it used a linear search to find which artifact a class belongs to ($O(N)$ for every class usage), which could be a bottleneck in large projects with many dependencies. These changes switch to a `Map`-based lookup ($O(1)$) and modernize the code using `computeIfAbsent` and more robust scope checks.\n\nThis significantly improves the efficiency of the analysis process for projects with large dependency trees. -- 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]
