add a couple more notes

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@153330 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett 2005-02-11 03:16:58 +00:00
parent 7ada12b288
commit 8129b3c6ca

View File

@ -281,6 +281,7 @@ public class DefaultArtifactDeployer implements ArtifactDeployer
{ {
try try
{ {
// TODO: swap for file wagon
File destFile = File destFile =
new File( new File(
getLocalRepository(project), getLocalRepository(project),
@ -560,6 +561,7 @@ public class DefaultArtifactDeployer implements ArtifactDeployer
*/ */
private File createMD5Checksum(File file) throws MavenException private File createMD5Checksum(File file) throws MavenException
{ {
// TODO: use the Observer in Wagon instead
MD5Sum md5Sum = new MD5Sum(); MD5Sum md5Sum = new MD5Sum();
md5Sum.setFile(file); md5Sum.setFile(file);
try try