peterreilly 2005/01/06 03:11:04 Modified: src/main/org/apache/tools/ant/taskdefs Checksum.java ImportTask.java Redirector.java Recorder.java Untar.java Log: remove imports Obtained from: Kevin Jackson Revision Changes Path 1.42 +0 -1 ant/src/main/org/apache/tools/ant/taskdefs/Checksum.java Index: Checksum.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Checksum.java,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- Checksum.java 22 Nov 2004 09:23:27 -0000 1.41 +++ Checksum.java 6 Jan 2005 11:11:04 -0000 1.42 @@ -26,7 +26,6 @@ import java.io.FileReader; import java.io.BufferedReader; import java.io.IOException; -import java.io.InputStreamReader; import java.util.HashMap; import java.util.Map; import java.util.Vector; 1.30 +1 -3 ant/src/main/org/apache/tools/ant/taskdefs/ImportTask.java Index: ImportTask.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/ImportTask.java,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- ImportTask.java 2 Dec 2004 22:06:15 -0000 1.29 +++ ImportTask.java 6 Jan 2005 11:11:04 -0000 1.30 @@ -1,5 +1,5 @@ /* - * Copyright 2002-2004 The Apache Software Foundation + * Copyright 2002-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,12 +20,10 @@ import org.apache.tools.ant.BuildException; import org.apache.tools.ant.ProjectHelper; import org.apache.tools.ant.Project; -import org.apache.tools.ant.ProjectHelper; import org.apache.tools.ant.Task; import org.apache.tools.ant.util.FileUtils; import java.io.File; -import java.io.IOException; import java.util.Vector; /** 1.22 +2 -6 ant/src/main/org/apache/tools/ant/taskdefs/Redirector.java Index: Redirector.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Redirector.java,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- Redirector.java 22 Nov 2004 09:23:28 -0000 1.21 +++ Redirector.java 6 Jan 2005 11:11:04 -0000 1.22 @@ -1,5 +1,5 @@ /* - * Copyright 2003-2004 The Apache Software Foundation + * Copyright 2003-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,17 +24,13 @@ import java.io.OutputStream; import java.io.StringReader; import java.io.BufferedReader; -import java.io.FileInputStream; -import java.io.PipedInputStream; import java.io.InputStreamReader; import java.io.PipedOutputStream; -import java.io.OutputStreamWriter; -import java.io.BufferedInputStream; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; -import java.io.FileNotFoundException; import java.util.Arrays; import java.util.Vector; + import org.apache.tools.ant.Task; import org.apache.tools.ant.Project; import org.apache.tools.ant.BuildException; 1.24 +1 -4 ant/src/main/org/apache/tools/ant/taskdefs/Recorder.java Index: Recorder.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Recorder.java,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- Recorder.java 2 Nov 2004 16:21:47 -0000 1.23 +++ Recorder.java 6 Jan 2005 11:11:04 -0000 1.24 @@ -1,5 +1,5 @@ /* - * Copyright 2001-2002,2004 The Apache Software Foundation + * Copyright 2001-2002,2004-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,9 +16,6 @@ */ package org.apache.tools.ant.taskdefs; -import java.io.FileOutputStream; -import java.io.IOException; -import java.io.PrintStream; import java.util.Hashtable; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.Project; 1.44 +2 -3 ant/src/main/org/apache/tools/ant/taskdefs/Untar.java Index: Untar.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Untar.java,v retrieving revision 1.43 retrieving revision 1.44 diff -u -r1.43 -r1.44 --- Untar.java 12 Nov 2004 15:14:59 -0000 1.43 +++ Untar.java 6 Jan 2005 11:11:04 -0000 1.44 @@ -1,5 +1,5 @@ /* - * Copyright 2000-2004 The Apache Software Foundation + * Copyright 2000-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,13 +23,12 @@ import java.io.IOException; import java.io.InputStream; import java.util.zip.GZIPInputStream; + import org.apache.tools.ant.BuildException; import org.apache.tools.ant.Project; import org.apache.tools.ant.types.EnumeratedAttribute; import org.apache.tools.ant.util.FileNameMapper; import org.apache.tools.ant.util.FileUtils; -import org.apache.tools.ant.util.FlatFileNameMapper; -import org.apache.tools.ant.util.IdentityMapper; import org.apache.tools.bzip2.CBZip2InputStream; import org.apache.tools.tar.TarEntry; import org.apache.tools.tar.TarInputStream;
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]