donaldp 02/02/09 15:34:16
Modified: proposal/myrmidon/src/main/org/apache/tools/ant/util
FileUtils.java
Log:
Remove unused variables
Revision Changes Path
1.20 +1 -6
jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/util/FileUtils.java
Index: FileUtils.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/util/FileUtils.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- FileUtils.java 6 Feb 2002 13:37:13 -0000 1.19
+++ FileUtils.java 9 Feb 2002 23:34:16 -0000 1.20
@@ -32,7 +32,7 @@
* @author [EMAIL PROTECTED]
* @author <a href="mailto:[EMAIL PROTECTED]">Conor MacNeill</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Stefan Bodewig</a>
- * @version $Revision: 1.19 $
+ * @version $Revision: 1.20 $
*/
public class FileUtils
{
@@ -85,7 +85,6 @@
BufferedReader in = new BufferedReader( new FileReader(
sourceFile ) );
BufferedWriter out = new BufferedWriter( new FileWriter(
destFile ) );
- int length;
String newline = null;
String line = in.readLine();
while( line != null )
@@ -398,10 +397,6 @@
/**
* Translates all occurrences of / or \ to correct separator of the
current
* platform and returns whether it had to do any replacements.
- *
- * @param buffer Description of Parameter
- * @param pos Description of Parameter
- * @return Description of the Returned Value
*/
public static void translateFileSep( StringBuffer buffer )
{
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>