From 1fc2bc5d7e57a0b94095fc37cc66657b20d4e369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=F8=EDk?= Date: Fri, 21 Jun 2013 20:17:43 +0200 Subject: [PATCH] Issue #150 Long lines restriction removed --- trunk/src/com/jpexs/decompiler/flash/graph/BinaryOpItem.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/trunk/src/com/jpexs/decompiler/flash/graph/BinaryOpItem.java b/trunk/src/com/jpexs/decompiler/flash/graph/BinaryOpItem.java index 1ae774e5e..be075b31b 100644 --- a/trunk/src/com/jpexs/decompiler/flash/graph/BinaryOpItem.java +++ b/trunk/src/com/jpexs/decompiler/flash/graph/BinaryOpItem.java @@ -48,9 +48,6 @@ public abstract class BinaryOpItem extends GraphTargetItem { } else { ret += leftSide.toString(localData); } - if (ret.length() > 500) { - return "/*line too long*/"; - } ret += hilight(operator); if (rightSide.getPrecedence() > precedence) {