mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-26 19:16:53 +00:00
Fix ActionEnumerate2 - Null should be considered part of EnumerateActionItem, no need to push it on the stack
This commit is contained in:
@@ -12,7 +12,8 @@
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library.
|
||||
* License along with this library.
|
||||
*/
|
||||
package com.jpexs.decompiler.flash.action.swf6;
|
||||
|
||||
import com.jpexs.decompiler.flash.action.Action;
|
||||
@@ -39,7 +40,6 @@ public class ActionEnumerate2 extends Action {
|
||||
@Override
|
||||
public void translate(TranslateStack stack, List<GraphTargetItem> output, HashMap<Integer, String> regNames, HashMap<String, GraphTargetItem> variables, HashMap<String, GraphTargetItem> functions, int staticOperation, String path) {
|
||||
GraphTargetItem object = stack.pop();
|
||||
GraphTargetItem object = stack.pop();
|
||||
stack.push(new EnumerateActionItem(this, object));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user