X Tutup
Skip to content
Closed
Prev Previous commit
Next Next commit
isImmutable is false for Array/MapCursor
  • Loading branch information
xerial committed Nov 28, 2014
commit 84ac45926d2a24f4f0f6f884d69428fe6a5ab6ed
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,10 @@ public ArrayValue toImmutable() {
arr[i++] = v.toImmutable();
}
return ValueFactory.newArray(arr);

}

@Override
public boolean isImmutable() { return false; }

}
Original file line number Diff line number Diff line change
Expand Up @@ -125,5 +125,7 @@ public MapValue toImmutable() {
return ValueFactory.newMap(keyValueArray);
}

@Override
public boolean isImmutable() { return false; }

}
X Tutup