From 644537ee8b7b5620eed6aa14e3a1feb44bc59b5e Mon Sep 17 00:00:00 2001 From: Brett Porter Date: Thu, 19 Nov 2009 07:18:49 +0000 Subject: [PATCH] cleanup javadoc tags git-svn-id: https://svn.apache.org/repos/asf/archiva/branches/MRM-1025@882063 13f79535-47bb-0310-9956-ffa450edef68 --- .../proxy/DefaultRepositoryProxyConnectors.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/archiva-modules/archiva-base/archiva-proxy/src/main/java/org/apache/maven/archiva/proxy/DefaultRepositoryProxyConnectors.java b/archiva-modules/archiva-base/archiva-proxy/src/main/java/org/apache/maven/archiva/proxy/DefaultRepositoryProxyConnectors.java index 32ef6fae2..674488a06 100644 --- a/archiva-modules/archiva-base/archiva-proxy/src/main/java/org/apache/maven/archiva/proxy/DefaultRepositoryProxyConnectors.java +++ b/archiva-modules/archiva-base/archiva-proxy/src/main/java/org/apache/maven/archiva/proxy/DefaultRepositoryProxyConnectors.java @@ -581,12 +581,12 @@ public class DefaultRepositoryProxyConnectors } return resource; - } - + } + private void queueRepositoryTask( String repositoryId, File localFile ) { RepositoryTask task = TaskCreator.createRepositoryTask( repositoryId, localFile, true, true ); - + try { scheduler.queueRepositoryTask( task ); @@ -623,8 +623,9 @@ public class DefaultRepositoryProxyConnectors * @param remoteRepository the remote repository to transfer from. * @param remotePath the remote path to the resource to get. * @param repository the managed repository that will hold the file - * @param localFile the local file that should contain the downloaded contents - * @param type the type of checksum to transfer (example: ".md5" or ".sha1") + * @param resource the local file that should contain the downloaded contents + * @param tmpDirectory the temporary directory to download to + * @param ext the type of checksum to transfer (example: ".md5" or ".sha1") * @throws ProxyException if copying the downloaded file into place did not succeed. */ private File transferChecksum( Wagon wagon, RemoteRepositoryContent remoteRepository, String remotePath,