diff options
| author | 2015-02-10 22:51:55 -0500 | |
|---|---|---|
| committer | 2015-02-10 22:51:55 -0500 | |
| commit | 6044c91079ae416ecaff2412f8ca8653f39e6f83 (patch) | |
| tree | aff5345fdb1f660b2e632a373be7b3f60d2e4a94 /test/cuchaz | |
| parent | fix issue with removing field mappings (diff) | |
| download | enigma-6044c91079ae416ecaff2412f8ca8653f39e6f83.tar.gz enigma-6044c91079ae416ecaff2412f8ca8653f39e6f83.tar.xz enigma-6044c91079ae416ecaff2412f8ca8653f39e6f83.zip | |
black list Object methods from deobfuscation
Diffstat (limited to 'test/cuchaz')
| -rw-r--r-- | test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java b/test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java new file mode 100644 index 00000000..4e091797 --- /dev/null +++ b/test/cuchaz/enigma/inputs/translation/F_ObjectMethods.java | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | package cuchaz.enigma.inputs.translation; | ||
| 2 | |||
| 3 | public class F_ObjectMethods { | ||
| 4 | |||
| 5 | public void callEmAll() | ||
| 6 | throws Throwable { | ||
| 7 | clone(); | ||
| 8 | equals(this); | ||
| 9 | finalize(); | ||
| 10 | getClass(); | ||
| 11 | hashCode(); | ||
| 12 | notify(); | ||
| 13 | notifyAll(); | ||
| 14 | toString(); | ||
| 15 | wait(); | ||
| 16 | wait(0); | ||
| 17 | wait(0, 0); | ||
| 18 | } | ||
| 19 | } | ||