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/03 18:36:22 UTC

[maven-assembly-plugin] branch cmpat updated: less public

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

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


The following commit(s) were added to refs/heads/cmpat by this push:
     new 42eb402  less public
42eb402 is described below

commit 42eb40226929f57621c8728be8af1ba651925371
Author: Elliotte Rusty Harold <el...@ibiblio.org>
AuthorDate: Fri Jul 3 14:36:11 2020 -0400

    less public
---
 .../assembly/io/ClasspathResourceLocatorStrategy.java     | 15 +--------------
 1 file changed, 1 insertion(+), 14 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/assembly/io/ClasspathResourceLocatorStrategy.java b/src/main/java/org/apache/maven/plugins/assembly/io/ClasspathResourceLocatorStrategy.java
index 4534e08..7d65dec 100644
--- a/src/main/java/org/apache/maven/plugins/assembly/io/ClasspathResourceLocatorStrategy.java
+++ b/src/main/java/org/apache/maven/plugins/assembly/io/ClasspathResourceLocatorStrategy.java
@@ -37,23 +37,10 @@ class ClasspathResourceLocatorStrategy
     /**
      * Create instance.
      */
-    public ClasspathResourceLocatorStrategy()
+    ClasspathResourceLocatorStrategy()
     {
     }
 
-    /**
-     * @param tempFilePrefix Prefix.
-     * @param tempFileSuffix Suffix.
-     * @param tempFileDeleteOnExit delete on exit.
-     */
-    public ClasspathResourceLocatorStrategy( String tempFilePrefix, String tempFileSuffix,
-                                             boolean tempFileDeleteOnExit )
-    {
-        this.tempFilePrefix = tempFilePrefix;
-        this.tempFileSuffix = tempFileSuffix;
-        this.tempFileDeleteOnExit = tempFileDeleteOnExit;
-    }
-
     /** {@inheritDoc} */
     public Location resolve( String locationSpecification, MessageHolder messageHolder )
     {