From bdad876fd6dd79bc631e4ae41edfcd380d366f07 Mon Sep 17 00:00:00 2001 From: Conor MacNeill Date: Mon, 30 Oct 2000 13:35:42 +0000 Subject: [PATCH] Fix minor type in Zip task git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268133 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/Zip.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/Zip.java b/src/main/org/apache/tools/ant/taskdefs/Zip.java index 9e9cb86d2..2cd5274a3 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Zip.java +++ b/src/main/org/apache/tools/ant/taskdefs/Zip.java @@ -136,7 +136,7 @@ public class Zip extends MatchingTask { throw new BuildException("basedir attribute must be set, or at least one fileset must be given!"); if (zipFile == null) { - throw new BuildException("You must specify the " + archiveType + "file to create!"); + throw new BuildException("You must specify the " + archiveType + " file to create!"); } Vector dss = new Vector ();