diff graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/debug/LocalImpl.java @ 16436:801017cdfd6a

fixed field name in LocalImpl.toString()
author Doug Simon <doug.simon@oracle.com>
date Wed, 09 Jul 2014 19:03:01 +0200
parents 775660e1acbc
children 1b904c58f27f
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/debug/LocalImpl.java	Wed Jul 09 19:02:29 2014 +0200
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/debug/LocalImpl.java	Wed Jul 09 19:03:01 2014 +0200
@@ -84,6 +84,6 @@
 
     @Override
     public String toString() {
-        return "LocalImpl<name=" + name + ", resolvedType=" + type + ", startBci=" + startBci + ", endBci=" + endBci + ", slot=" + slot + ">";
+        return "LocalImpl<name=" + name + ", type=" + type + ", startBci=" + startBci + ", endBci=" + endBci + ", slot=" + slot + ">";
     }
 }