summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/Deobfuscator.java
diff options
context:
space:
mode:
authorGravatar jeff2014-09-03 23:56:11 -0400
committerGravatar jeff2014-09-03 23:56:11 -0400
commit1faf3bee250f75d8c13708ab875a881a5b9cb6ed (patch)
tree97845c1b8a184a6082b1b7ae199c632ea6375f8c /src/cuchaz/enigma/Deobfuscator.java
parentupdated ignore list (diff)
downloadenigma-fork-1faf3bee250f75d8c13708ab875a881a5b9cb6ed.tar.gz
enigma-fork-1faf3bee250f75d8c13708ab875a881a5b9cb6ed.tar.xz
enigma-fork-1faf3bee250f75d8c13708ab875a881a5b9cb6ed.zip
removed deobfuscated method signatures from mappings
They're too much work to maintain, and they're totally unnecessary!
Diffstat (limited to 'src/cuchaz/enigma/Deobfuscator.java')
-rw-r--r--src/cuchaz/enigma/Deobfuscator.java5
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