LogFlames commented on code in PR #50: URL: https://github.com/apache/maven-dependency-tree/pull/50#discussion_r1907523702
########## src/main/java/org/apache/maven/shared/dependency/graph/ConflictData.java: ########## @@ -32,31 +32,70 @@ public class ConflictData { private Boolean originaOptionality; + /** + * Construct ConflictData. Containing information about conflicts during dependency resolution. + * Either this node lost the conflict and winnerVersion is set with the versionwof the winnig node, + * or this node won and winnerVersion is @code{null}. + * If this node won ignoredScope can contain potential scopes that were ignored during conflict resolution. + * + * @param winnerVersion the version of the dependency that was selected. + * @param ignoredScope the scope Review Comment: I had missed to type out the text, added in latest commit ``` the scope of the dependency that was ignored and not updated to ``` ########## src/main/java/org/apache/maven/shared/dependency/graph/ConflictData.java: ########## @@ -32,31 +32,70 @@ public class ConflictData { private Boolean originaOptionality; + /** + * Construct ConflictData. Containing information about conflicts during dependency resolution. + * Either this node lost the conflict and winnerVersion is set with the versionwof the winnig node, + * or this node won and winnerVersion is @code{null}. + * If this node won ignoredScope can contain potential scopes that were ignored during conflict resolution. + * + * @param winnerVersion the version of the dependency that was selected. + * @param ignoredScope the scope Review Comment: I had missed to type out the text, added in latest commit ``` @param the scope of the dependency that was ignored and not updated to ``` -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org