# HG changeset patch # User Roland Schatz # Date 1393004822 -3600 # Node ID b3d6e51228678927f04acbaeb77cd778b6ddd8e9 # Parent 0c38906450a08fa48f2420b208f6ae8fe032cc2b IGV: Fix bug with subgraphs. diff -r 0c38906450a0 -r b3d6e5122867 src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/BinaryParser.java --- a/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/BinaryParser.java Fri Feb 21 13:04:58 2014 +0100 +++ b/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/BinaryParser.java Fri Feb 21 18:47:02 2014 +0100 @@ -551,7 +551,7 @@ throw new IOException("Unknown type"); } case PROPERTY_SUBGRAPH: - InputGraph graph = parseGraph(null); + InputGraph graph = parseGraph(""); new Group(null).addElement(graph); return graph; default: