donaldp 02/02/18 00:52:29
Modified:
proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/dotnet
Ilasm.java
Log:
Remove unused variable - the correct one this time
Revision Changes Path
1.14 +6 -5
jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java
Index: Ilasm.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- Ilasm.java 18 Feb 2002 08:45:58 -0000 1.13
+++ Ilasm.java 18 Feb 2002 08:52:29 -0000 1.14
@@ -42,6 +42,12 @@
extends MatchingTask
{
/**
+ * name of the executable. the .exe suffix is deliberately not included
in
+ * anticipation of the unix version
+ */
+ private final static String EXE_NAME = "ilasm";
+
+ /**
* what is the file extension we search on?
*/
private final static String FILE_EXT = "il";
@@ -50,11 +56,6 @@
* and now derive the search pattern from the extension
*/
private final static String FILE_PATTERN = "**/*." + FILE_EXT;
-
- /**
- * title of task for external presentation
- */
- private final static String EXE_TITLE = "ilasm";
/**
* debug flag. Controls generation of debug information.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>