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/05/11 15:19:00 UTC

[maven-shared-io] branch elharo-patch-3 created (now b0acf9d)

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

elharo pushed a change to branch elharo-patch-3
in repository https://gitbox.apache.org/repos/asf/maven-shared-io.git.


      at b0acf9d  Fix continuation indents

This branch includes the following new commits:

     new b0acf9d  Fix continuation indents

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-shared-io] 01/01: Fix continuation indents

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

elharo pushed a commit to branch elharo-patch-3
in repository https://gitbox.apache.org/repos/asf/maven-shared-io.git

commit b0acf9d3970e8d4d1a7765237bc4824e2eaf97d8
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Mon May 11 11:18:55 2020 -0400

    Fix continuation indents
    
    @ian-lavallee
---
 .../org/apache/maven/shared/io/download/DefaultDownloadManager.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/maven/shared/io/download/DefaultDownloadManager.java b/src/main/java/org/apache/maven/shared/io/download/DefaultDownloadManager.java
index 5cf0087..aa13815 100644
--- a/src/main/java/org/apache/maven/shared/io/download/DefaultDownloadManager.java
+++ b/src/main/java/org/apache/maven/shared/io/download/DefaultDownloadManager.java
@@ -46,7 +46,7 @@ import org.apache.maven.wagon.repository.Repository;
  *
  */
 public class DefaultDownloadManager
-    implements DownloadManager
+        implements DownloadManager
 {
 
     /**
@@ -75,14 +75,14 @@ public class DefaultDownloadManager
 
     /** {@inheritDoc} */
     public File download( String url, MessageHolder messageHolder )
-        throws DownloadFailedException
+            throws DownloadFailedException
     {
         return download( url, Collections.<TransferListener>emptyList(), messageHolder );
     }
 
     /** {@inheritDoc} */
     public File download( String url, List<TransferListener> transferListeners, MessageHolder messageHolder )
-        throws DownloadFailedException
+            throws DownloadFailedException
     {
         File downloaded = (File) cache.get( url );