changeset 14535:2298f22a7b28

tiny change to DebugInfoBuilder
author Lukas Stadler <lukas.stadler@oracle.com>
date Fri, 14 Mar 2014 11:17:42 +0100
parents ccf090d3be47
children b3937b8b9ae1
files graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/gen/DebugInfoBuilder.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/gen/DebugInfoBuilder.java	Fri Mar 14 10:22:04 2014 +0100
+++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/gen/DebugInfoBuilder.java	Fri Mar 14 11:17:42 2014 +0100
@@ -45,8 +45,8 @@
         this.nodeOperands = nodeOperands;
     }
 
-    protected HashMap<VirtualObjectNode, VirtualObject> virtualObjects = new HashMap<>();
-    protected IdentityHashMap<VirtualObjectNode, EscapeObjectState> objectStates = new IdentityHashMap<>();
+    protected final HashMap<VirtualObjectNode, VirtualObject> virtualObjects = new HashMap<>();
+    protected final IdentityHashMap<VirtualObjectNode, EscapeObjectState> objectStates = new IdentityHashMap<>();
 
     public LIRFrameState build(FrameState topState, LabelRef exceptionEdge) {
         assert virtualObjects.size() == 0;