From 93d43cbf3c7ecd7fd47916943cf29bd646d3e90a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=F8=EDk?= Date: Sun, 15 Sep 2013 12:32:02 +0200 Subject: [PATCH] fixed hilights to pass test --- .../jpexs/decompiler/flash/helpers/hilight/Highlighting.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/com/jpexs/decompiler/flash/helpers/hilight/Highlighting.java b/trunk/src/com/jpexs/decompiler/flash/helpers/hilight/Highlighting.java index c2956f774..9a35c4be9 100644 --- a/trunk/src/com/jpexs/decompiler/flash/helpers/hilight/Highlighting.java +++ b/trunk/src/com/jpexs/decompiler/flash/helpers/hilight/Highlighting.java @@ -273,7 +273,7 @@ public class Highlighting implements Serializable { * @return Text with no highlights */ public static String stripHilights(String text) { - text = text.replace("\r\n", "\n"); + //text = text.replace("\r\n", "\n"); List tokens = getHilightTokens(text); StringBuilder ret = new StringBuilder(); for (HilightToken token : tokens) {