Browse Source

Delete some unused variables

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271704 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
5e099552e5
2 changed files with 2 additions and 10 deletions
  1. +1
    -5
      proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/i18n/Translate.java
  2. +1
    -5
      proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/optional/i18n/Translate.java

+ 1
- 5
proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/i18n/Translate.java View File

@@ -86,10 +86,7 @@ public class Translate
* Create new destination file? Defaults to false. * Create new destination file? Defaults to false.
*/ */
private boolean forceOverwrite; private boolean forceOverwrite;
/**
* Generated locale based on user attributes
*/
private Locale locale;

/** /**
* Source file encoding scheme * Source file encoding scheme
*/ */
@@ -564,7 +561,6 @@ public class Translate
String line; String line;
while( ( line = in.readLine() ) != null ) while( ( line = in.readLine() ) != null )
{ {
StringBuffer newline = new StringBuffer( line );
int startIndex = -1; int startIndex = -1;
int endIndex = -1; int endIndex = -1;
outer : outer :


+ 1
- 5
proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/optional/i18n/Translate.java View File

@@ -86,10 +86,7 @@ public class Translate
* Create new destination file? Defaults to false. * Create new destination file? Defaults to false.
*/ */
private boolean forceOverwrite; private boolean forceOverwrite;
/**
* Generated locale based on user attributes
*/
private Locale locale;

/** /**
* Source file encoding scheme * Source file encoding scheme
*/ */
@@ -564,7 +561,6 @@ public class Translate
String line; String line;
while( ( line = in.readLine() ) != null ) while( ( line = in.readLine() ) != null )
{ {
StringBuffer newline = new StringBuffer( line );
int startIndex = -1; int startIndex = -1;
int endIndex = -1; int endIndex = -1;
outer : outer :


Loading…
Cancel
Save