summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDalibor Topic <robilad@yahoo.com>2008-01-25 19:21:05 +0000
committerDalibor Topic <robilad@yahoo.com>2008-01-25 19:21:05 +0000
commite54ead0fc65afe24fed98fc64bdce54cc4d750f1 (patch)
treeb45208cd8d51e810d847d959d03b540e07f65350 /tools
parentc619e738452285f37689ac2d73d14dfd7042948b (diff)
downloadclasspath-e54ead0fc65afe24fed98fc64bdce54cc4d750f1.tar.gz
reversal of reversedlibgcj-import-20080128
2008-01-25 Dalibor Topic <robilad@kaffe.org> * tools/gnu/classpath/tools/native2ascii/Native2ASCII.java (createParser): Removed unused reversed misspelling. Use Native2ASCII.ReverseHelp instead of Native2ASCII.ReversedHelp. * resource/gnu/classpath/tools/native2ascii/messages.properties (Native2ASCII.ReverseHelp): New, renamed from ... (Native2ASCII.ReversedHelp): Removed. (Native2ASCII.ReversedHelpCompat): Removed.
Diffstat (limited to 'tools')
-rw-r--r--tools/gnu/classpath/tools/native2ascii/Native2ASCII.java12
1 files changed, 1 insertions, 11 deletions
diff --git a/tools/gnu/classpath/tools/native2ascii/Native2ASCII.java b/tools/gnu/classpath/tools/native2ascii/Native2ASCII.java
index 0667befc6..b7752d9b3 100644
--- a/tools/gnu/classpath/tools/native2ascii/Native2ASCII.java
+++ b/tools/gnu/classpath/tools/native2ascii/Native2ASCII.java
@@ -101,17 +101,7 @@ public class Native2ASCII
encoding = argument;
}
});
- result.add(new Option("reverse", Messages.getString("Native2ASCII.ReversedHelp")) //$NON-NLS-1$ //$NON-NLS-2$
- {
- public void parsed(String argument) throws OptionException
- {
- reversed = true;
- }
- });
-
- // We mistakenly added the extra "d" in "reversed"; now we don't
- // want to remove it, for backward compatibility.
- result.add(new Option("reversed", Messages.getString("Native2ASCII.ReversedHelpCompat")) //$NON-NLS-1$ //$NON-NLS-2$
+ result.add(new Option("reverse", Messages.getString("Native2ASCII.ReverseHelp")) //$NON-NLS-1$ //$NON-NLS-2$
{
public void parsed(String argument) throws OptionException
{