deobfuscation mode switch logic implemented

This commit is contained in:
honfika
2014-08-23 20:53:30 +02:00
parent c8208c0360
commit e4d30b03de
10 changed files with 236 additions and 234 deletions

View File

@@ -21,7 +21,7 @@ package com.jpexs.decompiler.flash;
* @author JPEXS
*/
public class ActionScriptTestBase {
protected String cleanPCode(String pCode) {
pCode = pCode.replaceAll(" *[\r\n]+ *", "\n").trim();
pCode = pCode.replaceAll(" +", " ").trim();