From c286d42c5b04d4036b144bff10dbafc183d45084 Mon Sep 17 00:00:00 2001 From: Stiver Date: Thu, 29 May 2014 18:13:17 +0200 Subject: - fixed the IndexOutOfBoundsException exception when decompiling FastStringBuffer - fixed typo in LITERALS_AS_IS definition - some helper stuff --- test/test/util/DotExporter.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test') diff --git a/test/test/util/DotExporter.java b/test/test/util/DotExporter.java index 88b9320..61ee5eb 100644 --- a/test/test/util/DotExporter.java +++ b/test/test/util/DotExporter.java @@ -150,6 +150,10 @@ public class DotExporter { private static String directBlockIdToDot(String id) { id = id.replaceAll("_try", "999"); id = id.replaceAll("_tail", "888"); + + id = id.replaceAll("_init", "111"); + id = id.replaceAll("_cond", "222"); + id = id.replaceAll("_inc", "333"); return id; } -- cgit v1.2.3