diff options
| author | 2018-07-18 13:46:00 +0100 | |
|---|---|---|
| committer | 2018-07-18 13:46:00 +0100 | |
| commit | 1ebe691c12f68beea378b133ddc4bcbde7f3f795 (patch) | |
| tree | fb051d9fde5644bd144a7e9d7bcecc70a256359c /src/main/java/cuchaz/enigma/CommandMain.java | |
| parent | Recursively rebuild method names (diff) | |
| parent | Update version number (diff) | |
| download | enigma-fork-1ebe691c12f68beea378b133ddc4bcbde7f3f795.tar.gz enigma-fork-1ebe691c12f68beea378b133ddc4bcbde7f3f795.tar.xz enigma-fork-1ebe691c12f68beea378b133ddc4bcbde7f3f795.zip | |
Merge pull request #62 from OpenModLoader/asm
ASM based class translator
Diffstat (limited to 'src/main/java/cuchaz/enigma/CommandMain.java')
| -rw-r--r-- | src/main/java/cuchaz/enigma/CommandMain.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/cuchaz/enigma/CommandMain.java b/src/main/java/cuchaz/enigma/CommandMain.java index f546eb1..59eb1b6 100644 --- a/src/main/java/cuchaz/enigma/CommandMain.java +++ b/src/main/java/cuchaz/enigma/CommandMain.java | |||
| @@ -99,7 +99,7 @@ public class CommandMain { | |||
| 99 | private static void convertMappings(String[] args) throws Exception { | 99 | private static void convertMappings(String[] args) throws Exception { |
| 100 | File fileMappings = getReadableFile(getArg(args, 1, "enigma mapping", true)); | 100 | File fileMappings = getReadableFile(getArg(args, 1, "enigma mapping", true)); |
| 101 | File result = getWritableFile(getArg(args, 2, "enigma mapping", true)); | 101 | File result = getWritableFile(getArg(args, 2, "enigma mapping", true)); |
| 102 | String name = getArg(args, 3, "format type", true); | 102 | String name = getArg(args, 3, "format desc", true); |
| 103 | Mappings.FormatType formatType; | 103 | Mappings.FormatType formatType; |
| 104 | try { | 104 | try { |
| 105 | formatType = Mappings.FormatType.valueOf(name.toUpperCase()); | 105 | formatType = Mappings.FormatType.valueOf(name.toUpperCase()); |