change empty Dish initialisation to use ArrayBuffer

This commit is contained in:
d98762625 2019-04-08 17:58:46 +01:00
parent 786e50c3c3
commit cdc15c0f20

View File

@ -21,8 +21,8 @@ class Dish {
* @param {Dish} [dish=null] - A dish to clone * @param {Dish} [dish=null] - A dish to clone
*/ */
constructor(dish=null) { constructor(dish=null) {
this.value = []; this.value = new ArrayBuffer(0);
this.type = Dish.BYTE_ARRAY; this.type = Dish.ARRAY_BUFFER;
if (dish && if (dish &&
dish.hasOwnProperty("value") && dish.hasOwnProperty("value") &&