ScriptChunk: Fix immutability.

This commit is contained in:
Matthew Leon 2019-05-16 20:40:03 -04:00 committed by Andreas Schildbach
parent 67722ff0e8
commit e2e763bd33

View file

@ -42,7 +42,7 @@ public class ScriptChunk {
*/
@Nullable
public final byte[] data;
private int startLocationInProgram;
private final int startLocationInProgram;
public ScriptChunk(int opcode, byte[] data) {
this(opcode, data, -1);