preserve variable order in AS2 deobfuscation + make it faster

This commit is contained in:
2015-11-02 08:32:41 +01:00
parent 56bd4cd1f6
commit e7bf1b0319
3 changed files with 24 additions and 9 deletions
@@ -33,7 +33,7 @@ public class Statistics implements AutoCloseable {
private final Stopwatch sw;
public static synchronized void addTime(String name, long duration) {
private static synchronized void addTime(String name, long duration) {
StatisticData s = map.get(name);
if (s == null) {
s = new StatisticData();