From 2bcc3b328adcc97c10be2efba1077ccf28b92caa Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Mon, 18 Feb 2002 08:52:29 +0000 Subject: [PATCH] Remove unused variable - the correct one this time git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271406 13f79535-47bb-0310-9956-ffa450edef68 --- .../tools/ant/taskdefs/optional/dotnet/Ilasm.java | 11 ++++++----- .../tools/ant/taskdefs/optional/dotnet/Ilasm.java | 11 ++++++----- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java b/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java index 0a0f4146a..41f735933 100644 --- a/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java +++ b/proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java @@ -41,6 +41,12 @@ import org.apache.tools.ant.types.DirectoryScanner; public class Ilasm 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? */ @@ -51,11 +57,6 @@ public class Ilasm */ 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. */ diff --git a/proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java b/proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java index 0a0f4146a..41f735933 100644 --- a/proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java +++ b/proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java @@ -41,6 +41,12 @@ import org.apache.tools.ant.types.DirectoryScanner; public class Ilasm 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? */ @@ -51,11 +57,6 @@ public class Ilasm */ 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. */