You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/07/30 13:15:12 UTC

[maven-dependency-plugin] branch transfer created (now b575a76)

This is an automated email from the ASF dual-hosted git repository.

elharo pushed a change to branch transfer
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git.


      at b575a76  privatize method

This branch includes the following new commits:

     new b575a76  privatize method

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-dependency-plugin] 01/01: privatize method

Posted by el...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch transfer
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git

commit b575a760850dd2a4d3a4132d5d294dcce86f9440
Author: Elliotte Rusty Harold <el...@ibiblio.org>
AuthorDate: Thu Jul 30 09:14:52 2020 -0400

    privatize method
---
 src/main/java/org/apache/maven/plugins/dependency/ListClassesMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugins/dependency/ListClassesMojo.java b/src/main/java/org/apache/maven/plugins/dependency/ListClassesMojo.java
index 8df0ea4..deee164 100644
--- a/src/main/java/org/apache/maven/plugins/dependency/ListClassesMojo.java
+++ b/src/main/java/org/apache/maven/plugins/dependency/ListClassesMojo.java
@@ -272,7 +272,7 @@ public class ListClassesMojo
         return buildingRequest;
     }
 
-    protected ArtifactCoordinate toArtifactCoordinate( DependableCoordinate dependableCoordinate )
+    private ArtifactCoordinate toArtifactCoordinate( DependableCoordinate dependableCoordinate )
     {
         ArtifactHandler artifactHandler = artifactHandlerManager.getArtifactHandler( dependableCoordinate.getType() );
         DefaultArtifactCoordinate artifactCoordinate = new DefaultArtifactCoordinate();