From 0b1aa1ce40f2d0eaba6b46ecdcb747ade57aa976 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=F8=EDk?= Date: Wed, 17 Jul 2013 17:02:46 +0200 Subject: [PATCH] Issue #245 AS3: double spaces around "as" keyword --- .../flash/abc/avm2/model/operations/AsTypeAVM2Item.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/AsTypeAVM2Item.java b/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/AsTypeAVM2Item.java index 9624304f3..e4c3df0ef 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/AsTypeAVM2Item.java +++ b/trunk/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/AsTypeAVM2Item.java @@ -23,6 +23,6 @@ import com.jpexs.decompiler.graph.GraphTargetItem; public class AsTypeAVM2Item extends BinaryOpItem { public AsTypeAVM2Item(AVM2Instruction instruction, GraphTargetItem value, GraphTargetItem type) { - super(instruction, PRECEDENCE_RELATIONAL, value, type, " as "); + super(instruction, PRECEDENCE_RELATIONAL, value, type, "as"); } }