Skip to content

Commit

Permalink
AS3 rename identifiers count fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jindrapetrik committed Mar 24, 2013
1 parent 1de004d commit 7610c39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion trunk/src/com/jpexs/decompiler/flash/gui/MainFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -1252,8 +1252,9 @@ protected Object doInBackground() throws Exception {
for (DoABCTag tag : abcPanel.list) {
cnt += tag.abc.deobfuscateIdentifiers(namesMap);
}
}else{
cnt = swf.deobfuscateAS2Identifiers();
}
cnt = swf.deobfuscateAS2Identifiers();
Main.stopWork();
JOptionPane.showMessageDialog(null, "Identifiers renamed: " + cnt);
if (abcPanel != null) {
Expand Down

0 comments on commit 7610c39

Please sign in to comment.