diff options
Diffstat (limited to 'src/cuchaz/enigma/Deobfuscator.java')
| -rw-r--r-- | src/cuchaz/enigma/Deobfuscator.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cuchaz/enigma/Deobfuscator.java b/src/cuchaz/enigma/Deobfuscator.java index 526534d..8944eec 100644 --- a/src/cuchaz/enigma/Deobfuscator.java +++ b/src/cuchaz/enigma/Deobfuscator.java | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | /******************************************************************************* | 1 | /******************************************************************************* |
| 2 | * Copyright (c) 2014 Jeff Martin. | 2 | * Copyright (c) 2014 Jeff Martin.\ |
| 3 | * | ||
| 3 | * All rights reserved. This program and the accompanying materials | 4 | * All rights reserved. This program and the accompanying materials |
| 4 | * are made available under the terms of the GNU Public License v3.0 | 5 | * are made available under the terms of the GNU Public License v3.0 |
| 5 | * which accompanies this distribution, and is available at | 6 | * which accompanies this distribution, and is available at |
| @@ -78,7 +79,9 @@ public class Deobfuscator | |||
| 78 | 79 | ||
| 79 | // config the decompiler | 80 | // config the decompiler |
| 80 | m_settings = DecompilerSettings.javaDefaults(); | 81 | m_settings = DecompilerSettings.javaDefaults(); |
| 82 | m_settings.setMergeVariables( true ); | ||
| 81 | m_settings.setForceExplicitImports( true ); | 83 | m_settings.setForceExplicitImports( true ); |
| 84 | m_settings.setForceExplicitTypeArguments( true ); | ||
| 82 | // DEBUG | 85 | // DEBUG |
| 83 | //m_settings.setShowSyntheticMembers( true ); | 86 | //m_settings.setShowSyntheticMembers( true ); |
| 84 | 87 | ||