# HG changeset patch # User Christos Kotselidis # Date 1383674534 -3600 # Node ID 343477cb53ff2d432be1f56421fcc206d04d795e # Parent 3affe68ddb50dbc5a9f014d00aafec278a87b45a# Parent 3332295624ecaed9bbeb564d78015228dd787372 Merge diff -r 3332295624ec -r 343477cb53ff graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrier.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrier.java Tue Nov 05 17:57:27 2013 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrier.java Tue Nov 05 19:02:14 2013 +0100 @@ -27,7 +27,7 @@ public class G1PostWriteBarrier extends WriteBarrier { - private boolean alwaysNull; + private final boolean alwaysNull; public G1PostWriteBarrier(ValueNode object, ValueNode value, LocationNode location, boolean precise, boolean alwaysNull) { super(object, value, location, precise); diff -r 3332295624ec -r 343477cb53ff graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/SerialWriteBarrier.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/SerialWriteBarrier.java Tue Nov 05 17:57:27 2013 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/SerialWriteBarrier.java Tue Nov 05 19:02:14 2013 +0100 @@ -27,7 +27,7 @@ public class SerialWriteBarrier extends WriteBarrier { - private boolean alwaysNull; + private final boolean alwaysNull; public SerialWriteBarrier(ValueNode object, LocationNode location, boolean precise, boolean alwaysNull) { super(object, null, location, precise);