Is it possible to output the current stacktrace with method signatures? I'm trying to debug some obfuscated code that has a ton of methods with the same name that just differ in arguments and return type.
Some things that will not work:
Thread.currentThread().getStackTrace();
new Throwable().getStackTrace();
// etc..