# HG changeset patch # User Christos Kotselidis # Date 1383674343 -3600 # Node ID 944e31d1b427b6063c38b0f001f7118e677031e1 # Parent a2b1ee69ce4625e71968975a9cc9e092b827f81d Finalize fields diff -r a2b1ee69ce46 -r 944e31d1b427 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 Mon Nov 04 15:42:27 2013 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrier.java Tue Nov 05 18:59:03 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 a2b1ee69ce46 -r 944e31d1b427 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 Mon Nov 04 15:42:27 2013 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/SerialWriteBarrier.java Tue Nov 05 18:59:03 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);